Visual Studio application not showing under Windows 8.1
i created a simple one button program in Visual Studio 2017. If i start the .exe which was in \bin\debug the program runs fine (Windows 10). The program brings firefox in forground and rotates tabs in firefox. If i copy the .exe to the target machine (Windows 8.1), the program opens but showed only in taskbar. On desktop, the app is not visible. See-the-Problem
.Net Framework is installed. Maybe there is something other missing on the target machine? Thank you for help!
See also questions close to this topic
-
Using Webtest 2017 Why does my Form Post Parameters flip after I checkout the code from the repository?
Using: Webtest 2017 Note: I'm a webtest newbie
I recorded a few steps on a webpage and on one of the pages I am selecting a file I want to upload. In the Webtest script I have a Form Post Parameters folder with two parameters. One being license and the other being File Upload Parameter. When I record the request using Fiddler the request is FileUpload first and license last. Webtest for some reason has license then FileUpload. If I run the test with license then Fileupload the script fails. So I manually cut and paste to have Fileupload and then license, the test will pass. However when I check in my code and then check out the code, the code has license first and Fileupload second so the script will fail.
I'd like to share the script but I am not allowed. So I added the lines below.
Is there a setting I don't have turned on that causes these two files to switch? It could be something simple, but I don't know. I tried to separate the request and have 1 being the fileupload and the second being license, but that wont work. Sorry again that this is a high level description. Let me know if there's anything else I can add to this message to help explain the issue I'm having.
Note: I took a look at the XML and it seems to be setup correctly.
<FormPostHttpBody> <FileUploadParameter Name="DataSource1.Upload_Submit_App#csv.UploadApp" FileName={{DataSource1.Upload_Submit_App#csv.UploadApp}}" ContentType="application/x- zip-compressed" GenerateUniqueName="False" UseGuids="False" FileUploadName=" {{DataSource1.Upload_Submit_App#csv.UploadApp}}" HtmlEncodeFileName="True" /> <FormPostParameter Name="license" Value="{"licenseType":"Free","basePrice":"","IsPerDeviceLicense":false,"trialType":"TimeBased","trialDays":30,"trialCredits":100,"usageUnit":""}" RecordedValue="{"licenseType":"Free","basePrice":"","IsPerDeviceLicense":false,"trialType":"TimeBased","trialDays":30,"trialCredits":100,"usageUnit":""}" CorrelationBinding="" UrlEncode="True" /> </FormPostHttpBody>
-
VB.Net default form instance
I have replaced (regex) all accesses to the default form instances in my project and I now want to make sure that I'm not using the default instances any more.
It seems that the default instances feature can't be disabled (without changing the classes' ctor)
Anybody know how to find all usages of the default form instances in VB.Net (or - access to non-shared members using the class name)
FYI: I'm using VS2017 with ReSharper
-
Visual Studio 2017 15.6.6 is very slow and CPU intensive (30-40% cpu consumption)
I noticed Visual Studio 2017 getting progressively slower with every update. Today it happened to be extremely slow really impacting my work and performance.
It takes 30-40% cpu consumption in background even when I'm doing nothing in Studio. So almost every keystroke is delayed with fraction of second.
Solution I'm working with is big enough comprising 100 projects.
I updated VS to ver. 15.6.6, and it did not help.
I read some forums and found it might be impacted by Extensions. I disabled all extensions leaving only few Ms "native" which either cannot be removed like Microsoft Advertising SDK, or some few other Microsoft produced extensions like "Roslyn Language Services" can be removed but requires to uninstall frameworks and features I truly need. However it did not help either.
I restarted Studio and even rebooted machine few times but did not help
Any ideas on what can be done are very welcomed
I have 16 Gb op.memory, 2.70 Ghz i7, lots of free disk space.
-
how to get today's modified folders in a directory using batch file
I have a folder "Projects" and it contains multiple folders for different projects in it, I want to back-up that folder which has some modifications today( it can be single project or can be more than one).
set ProjectFolder=D:\Projects for %%o IN (%ProjectFolder%/*.*) DO ( echo %%o set Project1Folder=%%o xcopy "%Project1Folder%\*.*" "%NetworkFolder%\%Project1Folder%\backup_%CurrentDate%\" /s/h/e/k/f/c )
And how to pass foldername(modified project) to be be copied in a loop.
Note :- trying something like below but how to get today's modified folder(s) only..
EDIT:-
set MainFolder=D:\Projects set LocalFolder=D:\backup for /d %%D in (%MainFolder%/*.*) do ( set ProjectFolder=%%~fD xcopy "%%~fD\*.*" "%LocalFolder%\" /s/h/e/k/f/c /D:03-23-2018 )
-
unable to check directory exists or not in batch file
Here I am concatenating 2 variables to check whether a particular directory exists or not, i don't know what is missing here, pl help.
set MyFolder=\\192.108.10.10\Backup echo. for /f %%a in ('sqlcmd -S %SqlServer% -U %Username% -P %Password% -Q "SET NOCOUNT ON select ltrim(convert(date, getdate()))" -h -1') do set CurrentDate=%%a echo. echo %NetworkFolder2%\%CurrentDate% IF exist %MyFolder%\%CurrentDate%( echo yes ) ELSE ( echo no )
-
Failed to set Android sdk location in Android studio 3.0.1 on windows 8.1
Not able to set path for android sdk .Specific problem is that You can not able to click on textbox.
in fact in above image the all the buttons , checkbox and textbox are not clickable.
How to solve this problem please help me.I searched so much on internet but did'nt get any relevent answer for me.