I've installed g++ to my computer, and after that I can't use my Visual Studio normally [closed] - g++

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 days ago.
Improve this question
Here is my source code:
I've tried to fix this, but I find that it isn't working. How can I get my Visual Studio to run as normal?

Related

i am new to all this, any idea how to solve this [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 days ago.
Improve this question
keep encountering this problem
i am trying to learn SQL on a mac, learning it with sql workbench, and i keep running into this problem, can anyone help?

I CAN'T RIGHT CLICK INSIDE ANDROID STUDIO [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 days ago.
Improve this question
I have a problem with android studio, from time to time it does not allow me to right click inside ANDROID STUDIO , this is too frustrating even after shutting down or restarting it still the same, I have been looking for the reason for this for 2 days, can someone help me
Already restarted the PC, uninstalled the plugins and nothing, I don't know why this happens

I am getting an error while running the project in android studio [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 months ago.
Improve this question
I am getting this error
I want to build for this project
You need to upgrade min SDK version in build.gradle file to 21
minSDKVersion=19
replace to
minSDKVersion=21

How to run a vb program from first from [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
When I run my Visual Basic program it opens the fourth form, not the first. How can I Make it run from the first form?
You need to set the project's 'Startup form'.
See this article for explicit details:
https://msdn.microsoft.com/en-us/library/aa984318%28v=vs.71%29.aspx?f=255&MSPPError=-2147217396

File Transfer over ip in vb [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
in Visual basic there is a function called file copy
filecopy(source,destination)
is it possible to copy from my computer to another over ip?
ex:
filecopy("C:\User\name\Desktop\test.txt",//192.168.x.x)
if yes what is the correct syntax?
You need to specify the UNC path correctly, for example:
filecopy("C:\User\name\Desktop\test.txt","\\192.168.x.x\c$\User\name\Desktop")
Also it's better to use File.IO.Copy instead of the old VB6 syntax.