What do you do with the datatable? Does it have to be in a data table? If not, create an entity class that mimics the database table, and use a reader to populate the class. Create a collection,...
I had a few strange things happen. On one of the missed answers the correct answer didn't show up like on others. At some points during the quiz, I was not able to select an answer and have to...
Since you already have an application to stop the game, put a time function in that application to check the internet time and re-set the system clock. That way...
You really need to think about what you want to do. For example. In you first bit of code, if an error occurs in "function1" then function 2 gets skipped. Thinking about it using your e-mail...
You will probably want to use the "SENDMESSAGE" api. If you use Spy++, there is an option to show the Messages that the window is receiving. So if you click on a Menu, you will see what message is...
Well in this case, it will most definitely be much more difficult. This will have to be a multi-step process. You will need to use the FindWindowEX function that allows you to limit the search for...
You don't tell us what the error is, but it could be that you have 3 edit boxes, but you strItems is defined as 1,1 so you could be getting errors trying to add the 3rd box?
If you initialize your instronProgram class there, once again, this is a NEW instance of the class, and will go out of scope and be destroyed in this particular method. If this is going to be used...
Stevish,
That has to do with the scope of the variable you are using. You might have declared it in a different .cs file, but the location this function is in, does not have access to that...
In your original code, You have the .Tostring in the wrong place. The way you have it, you are trying to ".ToString" the .ADD method of the columns collection of the datagridview. I assume you what...