I have an ASP page which shows some parameters for the user, he picks them and then presses a button (no postback is done) to open a window with the mentioned parameters passed in the URL.
then in that page a report from SQL Report Serives is called up in an IFRAME. Now, when i return to the...
I'm using webservices and in my remote application I access them (duh)
The webservice and the remote app are going to be in a VPN so connection losses are quite possible...
Now my code is like such:
try{
//instantiate webservice, set it's url (ex http://test-server/communications/messages.asmx)...
Im making a browser program, I haev a TabControl and i want to dynamically add tabs to it from a 'control' array.
The array contains a structure:
public struct fullTab
{
public System.Windows.Forms.TabPage Tab;
public AxSHDocVw.AxWebBrowser WebBrowser;
};
Everything seems to work fine until...
What's the closest thing that can be used in Visual Studio because i've had enough of 5 ancient code and DevC++ 4 [evil]
I'm looking for somethign that can be used in making simple games (Snake, TTT, etc...)
Thanks in advance!
Ok, I'm not even sure where to start with this one...
I want to make my own 'installer' here's the situation:
-There's a few files to extract (readme.txt, help.txt, and an 'app.exe')
-After the installation is complete I want to launch app.exe and remove the installer.exe
-I don't want app.exe...
Here's a function from my prog:
void CDeck::Deal(void)
{
srand((unsigned)time(0)); //Start random generator
vector <CARD> Cards; //Declare cards vector
for (int i = 1 ; i <= 52 ; i++ )
{
Cards.push_back(i); //Fill Cards with values 1-52
}
//Print original...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.