-
Replied To a Post in visual studio automation
Try Shelling devenv instead of test.bat -
Replied To a Post in Windows 10 Creator's Update
Aside from moving a few things around (again), missing the control panel (which they had already said was on the way out), and having an extra 8 gig free on … -
Replied To a Post in visual studio automation
Read the message. It says you have a syntax error. I tried devenv clipjpg.sln /build on one of my projects and it compiled/built the executable with no problems. -
Replied To a Post in visual studio automation
You can run `devenv.exe` and build your project from the command line. Type devenv /? to get the command line arguments/switches. You'll have to spawn it as an external process. … -
Replied To a Post in Trump
Assad just made a statement claiming that the photos of the dead babies following the chemical attack are fake. I'm waiting for Trump to issue a statement like "Who does … -
Replied To a Post in Windows 10 Creator's Update
If anyone is interested, you can still get at the old control panel by opening Explorer then pasting Control Panel\All Control Panel Items into the address bar. -
Replied To a Post in Recover deleted drive partition.. help!
Have a look at [this](https://www.eightforums.com/tutorials/31950-partition-recover-deleted-partitions-windows.html) and see if it helps. -
Replied To a Post in Windows 10 Creator's Update
I had heard it was being phased out. Most sub-items can still be run by executing the appropriate `.cpl` file. I managed to clean out the windows.old folder by running … -
Edited Windows 10 Creator's Update
In order to resolve a problem whereby Microsoft keeps updating my video driver (which works) with a newer version that is crippled, I installed the Windows 10 Creator's Update. So … -
Edited Windows 10 Creator's Update
In order to resolve a problem whereby Microsoft keeps updating my video driver (which works) with a newer version that is crippled, I installed the Windows 10 Creator's Update. So … -
Created Windows 10 Creator's Update
In order to resolve a problem whereby Microsoft keeps updating my video driver (which works) with a newer version that is crippled, I installed the Windows 10 Creator's Update. So … -
Replied To a Post in Windows 10 Updates
I found a setting (available AFAIK only from the old control panel - which MS is planning to remove) that allows me to disable automatic driver updates. I reloaded a … -
Replied To a Post in Windows 10 Updates
Microsoft is at it again. My video on the laptop is powered by Intel. It has a nice hotkey rotate feature that lets me quickly rotate the video. After a … -
Replied To a Post in WP Theme
Yeah. I checked the link before I posted. WP could be Word Perfect (probably defunct) Word Pro, or any of a hundred other possible initialisms. I didn't want to assume. … -
Replied To a Post in WP Theme
And what is WP? -
Replied To a Post in Trump
>Not sure how some of you can be so sure about the chemical attack. I'm not completely sure but given Assad's history, he's used chemical weapons before. I'm willing to … -
Replied To a Post in Trump
Trump has asked PBS Kids and the Children's Television Workshop (at the last minute) if they could send characters from Sesame Street to the White House annual Easter Egg Roll. … -
Replied To a Post in Trump
>Not really, airports can function with as little as just a runway which is not much more than a flat bit of land. Then I have to wonder why they … -
Replied To a Post in Weird problem, one browser works, other one does not
That may be the case for something like a programming technique/paradigm but almost certainly not for something that relates to an 8 (or more) year old - browser - hardware … -
Replied To a Post in Trump
>I've been googling this. Opinions vary. Obama himself asked for authorization, but stated he felt he was not legally REQUIRED to get it back in 2013. Well, the analysts I've … -
Replied To a Post in Trump
>I don't see that he had much of a choice. I agree with what he did, however, he had the choice to go to Congress and get permission (which is … -
Replied To a Post in cosine function
Two final comments: Factorial should probably return a long unsigned int rather than a float. And your test if (n==0) will cause your function to fail if passed a negative … -
Replied To a Post in cosine function
You have a couple of problems. You have to write your own factorial function. However, `pow`, and `cos` are in `math.h` so unless one of your compiler switches is doing … -
Replied To a Post in Trump
>We can't call names because USA voted for a that In 2016, 56.9% of eligible voters actually voted. The rest were either deliberately disenfranchised, or have given up on the … -
Replied To a Post in recursive delete using a batch file on windows-XP
That doesn't do what the OP requested. Plus, why bother to create a batch file that contains only one line and does only one specific thing for a specific folder? … -
Replied To a Post in Email Marketing
Google may appreciate it but the rest of us who are repeatedly spammed with junk mail certainly do not. -
Revoked Solved Status for Visual basic 2010 ordering names of an array
Hello im having trouble with my code ! we are asked to organize a list of names from a text.txt file the make them show up into a lits box … -
Replied To a Post in Display error beep (8 beeps) even if display cable is removed
According to Dell you are correct - 8 Beeps: Reseat the LCD cable or replace the LCD screen [Dell Beep Codes](https://www.parts-people.com/blog/2014/06/27/dell-inspiron-15r-n5010-beep-codes-diagnostic-indicators/) If you have an HDMI port (I think that … -
Replied To a Post in What is missing? pointers not pointing correctly
RE: PM. Your input routine should look like void getUserInput(int *numHospitalRooms, int *numFlowers) { do { printf("\nHow many hospital rooms: "); scanf("%d", numHospitalRooms); if (*numHospitalRooms < 1 || *numHospitalRooms > … -
Replied To a Post in What is missing? pointers not pointing correctly
Your declaration is void getUserInput(int *numHospitalRooms, int *numFlowers); but you are calling it with getUserInput(numHospitalRooms, numFlowers); You define the parameters as `pointer to int` but you are passing `int`. You'' … -
Replied To a Post in Hello, Everybody
Just dandy. Hope you can say the same. Welcome to Daniweb. -
Replied To a Post in Expectation of Privacy in the "Turing Era"
A company in Canada recently lost a class actions suit because of privacy issues. It seems that their product, which can be controlled remotely via smart phone, was collecting temperature, … -
Replied To a Post in Favourite April Fools' Day geek prank of 2017
There was the story about the [self driving bike](https://www.youtube.com/embed/LSZPNwZex9s) from the Netherlands. -
Replied To a Post in external dvd drive power
My first program was in BASIC on a mainframe at the University of Saskatchewan in 1971. -
Marked Solved Status for check box through show /hide button
dear sir i have one check box and one button.when i open form above button is hide. if i tick check box and close the form and when i re … -
Replied To a Post in check box through show /hide button
Glad to help. Come on back if you have more questions. -
Replied To a Post in check box through show /hide button
I strongly urge you to get into the habit of naming your controls for their purpose. For demo purposes, `Button1` and `Checkbox1` are fine but in a larger program with … -
Replied To a Post in check box through show /hide button
You don't need the line Dim settings As New My.MySettings Delete it. Go to Project -> Properties then select the `Settings` tab. Create a variable named `ButtonVisible`. You should use … -
Replied To a Post in VB.NET doubts
Not in one line, but you could do For i As Integer = 0 To 2 cars(i).Visible = True Next or if you want to make it more general (assuming … -
Replied To a Post in Expectation of Privacy in the "Turing Era"
Verizon and Comcast have made public statements to the effect that they did not sell customers' individual web browsing history before the FCC privacy rules were adopted and have no … -
Replied To a Post in check box through show /hide button
Assuming that your settings variable is a Boolean you can just do CheckBox1.Checked = My.Settings.check Button1.Visible = My.Settings.check in your form load event handler. You'll want to restore the Checkbox … -
Replied To a Post in Expectation of Privacy in the "Turing Era"
Unfortunately, when the big providers have the ability to buy enough poiliticians so that they can create laws to prevent fair competition, I can't see that happening. Chattanooga, Tennessee successfully … -
Replied To a Post in Expectation of Privacy in the "Turing Era"
>I'm completely baffled that the Republicans did that It just make it legal for the big corporations to make even more money than they are making now at the expense … -
Replied To a Post in Connection to web server from VB.net
That would depend on what the database engine is and how it is configured. The difference is in the connection string and you can get the correct format [here](https://www.connectionstrings.com/). Also, … -
Replied To a Post in external dvd drive power
I find that using too high a voltage lets the smoke out of the chips. Once you let the smoke out things stop working. My father-in-law did that with a … -
Replied To a Post in need help in online CBT - multi choice
**Leo:** "You seem troubled. What's on your mind"? **Phyllis:** "My daughter, Bess, wants to marry a boy whose parents are midgets." **Leo:** "What's her problem? Can't she find one?" -
Replied To a Post in car rental app in Python
We will be happy to help you if you show us what you have done so far and explain what you are having trouble with. -
Replied To a Post in Trump
Michael Flynn has requested an immunity deal in order to "tell all" about the Trump/Russian involvement. The Senate Investigation Committee has announced that they have refused him immunity. Possible scenarios: … -
Replied To a Post in programming vb.net
We'd be happy to help. Please show us what code you have so far. -
Replied To a Post in external dvd drive power
Here's a tip for next time. Whenever I buy something that has a power adaptor, I put a label on the power pack identifying what it is for, and a …
The End.