Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: GMX
  • Content: Threads
  • Order by date
  1. GMX

    Weird bevaviour using report services in a popup window

    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...
  2. GMX

    Restart loading page on server

    Is there a way to restart processing the request on the server as in re-instantiate the webpage object.
  3. GMX

    Testing validity of a URL

    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)...
  4. GMX

    What's 'InvalidActiveXStateException' and how do i get rid of it?

    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...
  5. GMX

    Embeding an HTML document in a windows form...

    Ok I give up! How to I put an HTML document (sort of like in an iframe) inside a wondows form? I thought there would be a built-in control for this...
  6. GMX

    Text in OpenGL?

    What's the easiest way to use text in OpenGL?
  7. GMX

    Alternatives to the WinBGI library?

    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!
  8. GMX

    Modifying .a files

    Is there a way to decompile or edit a ".a" library?
  9. GMX

    Extracting a .exe file and removing the 'installer.exe'

    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...
  10. GMX

    Accessing clipboard in a console app.

    Is it possible? If yes then which header do I need?
  11. GMX

    random_shuffle() problem

    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...

Part and Inventory Search

Back
Top