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 strongm 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
  • Order by date
  1. GMX

    Weird bevaviour using report services in a popup window

    ... 21 10/08/2005 9:30:38 AM /index.aspx 200 GET View Details 22 10/08/2005 9:30:40 AM /index.aspx 302 POST View Details 23 10/08/2005 9:30:40 AM /index.aspx 200 GET View Details 24 10/08/2005 9:30:41 AM /index.aspx 302 POST View Details 25 10/08/2005 9:30:41 AM /index.aspx 200 GET View...
  2. 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...
  3. GMX

    Forms (Conditional?)

    You're looking at using DHTML or a dynamic page (asp, php, jps, etc). With DHTML you just put it all the potential sections and organise them into say tables. Then: attach a respective event to your input controls when they change. Then set the style.display = "none"; or style.display =...
  4. GMX

    Restart loading page on server

    Ya, i meant this: // Refresh the page by redirecting the request to the same URL. this.Page.Response.Redirect(this.Page.Request.RawUrl, false);
  5. 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.
  6. GMX

    Testing validity of a URL

    Ya but isn't that where the delay comes from in the 1st palce?
  7. GMX

    How to do ftp using C#

    I'm not sure if there is an already made class for FTP access... What you want to do will require to use sockets and you'd have to be familiar with the FTP protocol. Then again search arround on google I'd bet you can find a good tutorial on this subject.
  8. GMX

    PDF Library for C++?

    http://www.softhypermarket.com/PDF-Creator-Pilot-download_21335.html Looks really nice but that one's $300... http://www.fastio.com/ Free but seems not as powerful as the other one http://www.codeproject.com/dotnet/PdfLibrary.asp Interesting relevant article
  9. GMX

    Calculation problem?

    Try to cout a and b as decimals and as hex values.
  10. 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)...
  11. GMX

    Help!!Can Add user to Active Directory, but can Not update

    Maybe try to copy the user you want to modify, modify the user object, remove the old one, add the modified one.
  12. 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...
  13. 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...
  14. GMX

    GDI Incompatibilities: win98 vs XP

    Have you tried recompiling the program on a 98 or ME machine? it might solve the problem.
  15. GMX

    How to keep an SDI app. always maximized?

    Well move your app to 0,0 and using the function GetSystemMetrics (look it up in MSDN) set your app's height/width to the screen size.
  16. GMX

    How to return a structure?

    Doesn't microsoft's compiler provide a default copy contructor?
  17. GMX

    Text in OpenGL?

    What's the easiest way to use text in OpenGL?
  18. 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!
  19. GMX

    Modifying .a files

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

    TOTAL VC++ newbie - urgent help on DLLs & everything!

    http://vbcodemaster.net/program.asp?lng=3 http://devcentral.iticentral.com/articles/C++/default.php (have to register aparently) http://www.aul.fiu.edu/tech/visualc.html You can also try memorising the MSDN Library...

Part and Inventory Search

Back
Top