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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by CStrugling

  1. CStrugling

    Network speed detection

    Bros, How to code the network speed detection? What i mean is I want to detect the upload and download using clickbutton. When I press a button it will show to textbox1 the upload speed and textbox2 the download speed. example: TextBox1 = 42 kbps TextBox2 = 54 kbps Is anybody here how to do...
  2. CStrugling

    How to hide an application just like hiding taskman?

    wow! thanks for this. got what i want. go CodeGear forum... thanks a lot.
  3. CStrugling

    Problem when main form is run in minimize state.

    Maybe this code snippet can help your problem. Currently, I`m working on my project using .ini file and I have my code using this. put this on your ini.cpp or what you want. ChildMax= IniFile->ReadBool(sct,"ChildWinMaximize"); IniFile->WriteBool( sct,"ChildWinMaximize",ChildMax); then, in...
  4. CStrugling

    Re: Canvas does not allow drawing

    @BuilderSpec I used the lock and unlock method and it works. thanks for your info and i got the idea on it. good work guys.
  5. CStrugling

    viewing forms in Borland

    click the default layout, it will go back to normal window. i guess.
  6. CStrugling

    How to hide an application just like hiding taskman?

    Does anybody here how to hide an application just like hiding a task manager? Using minimize window.
  7. CStrugling

    Re: Canvas does not allow drawing

    Hi programmers, Do you know how to fix this bug issue "Canvas does not allow drawing". I get this error when I draw to my canvas by moving many times, ie: draw a line many times. Sometimes this will appear and application crash. I`m using Borland C++ 2006 version. Is this a bug on borland? Im...
  8. CStrugling

    Child forms sometimes does not appear?

    Maybe my snippet can help to you. In formshow, apply this; if (!StartFile.IsEmpty()) CreateMDIChild(StartFile); else if ((EV->OpenLastFile)&&(!EV->LastFile.IsEmpty())) CreateMDIChild(EV->LastFile); else if (!EV->HomeWindow.IsEmpty()) { TMDIChild *cp = CreateMDIChild(EV->HomeWindow)...
  9. CStrugling

    Canvas does not allow drawing

    Hi programmers, Do you know how to fix this bug issue "Canvas does not allow drawing". I get this error when I draw to my canvas by moving many times, ie: draw a line many times. Sometimes this will appear and application crash. I`m using Borland C++ 2006 version. Is this a bug on borland? Im...

Part and Inventory Search

Back
Top