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: Tdrgabi
  • Order by date
  1. Tdrgabi

    delphi's #region

    i know that in 2005 its posible, but i want to know if there is any way to get the same result, in Delphi7 using a command , compiler directive somehow (?!) or a wizard (most likely) ....
  2. Tdrgabi

    delphi's #region

    I've worked with C# for a while, and i enjoy a lot the #region command. It wrilly helps. Is there any way to do this in delphi 7.0. I know that Delphi 2005 has it, but we cant upgrade to Delphi 2005 yet. So is there any option hidden somewhere deep inside the dephi to do that, or any wizard...
  3. Tdrgabi

    global msg procedure

    Is there any way to add a procedure in one unit, lets say uUtils which can be used to manage the OnKeyPress event on any Form wich includes this message? For example, i have some code, and it has to be put on any form, to do something on keypress. And we also have an Unit in which we store all...
  4. Tdrgabi

    Skins Program

    you have a skins folder, with a subfolder for every skin. the people can change the skins from inside the program by choosing from a combobox you populate with the name of the subfolders from the Skin folder. When you want them to add a new one, they will have to download ... or get from...
  5. Tdrgabi

    GetLine problem

    I wrote an application a couple of months ago in VisualC 6.0 It was used to get some text from a CRichEditCtrl. Suddenly, after installing .NET and some upgrades on the windows xp i receive an error inside the application. edit1.GetLine(lineNumber,a_char_pointer), i've tryied even...
  6. Tdrgabi

    urgent RegistryKey class questiob

    hi is there a way to create any other kind of value for a subkey (in win registers) other than string ...from c# i was trying with registrykey.setvalue("subkey" (byte)value) but it makes an string value. i need to write hex data into a binary value ....
  7. Tdrgabi

    New to VC++.net...

    what do you want to learm more exactly ....? what errors do the old tutorials give ... ?
  8. Tdrgabi

    Code compiles, doesn't link

    does it give an link error of any kind?
  9. Tdrgabi

    WMI Win32_LogicalDisk question

    greetings, is it possible to find the serial number of a disk drive using Win32_LogicalDisk ? I mean the code that wont change even if i format my hdd. The serial number of the hardware. i know there is a volumeSerial and DeviceId property in Logical_Disk but those wont do the trick. As soon as...
  10. Tdrgabi

    NULL VARIANT

    thank you ... that works , i just didnt think of it. just one more question .... does anybody know how to convert from a BSTRING to a LPTSTR? i tryied wsprintf but it only returns the first letter of the BSTR.
  11. Tdrgabi

    NULL VARIANT

    hi, how can i check if a variant has a NULL value (it doesnt have ==). if its value is {VT_NULL} .....
  12. Tdrgabi

    control array

    thanks for answering ... but my question was posted a month ago .... (10 may) ... i kinda passed that bottleneck. Thanks again.
  13. Tdrgabi

    Delphi question

    hi i know this isnt a delphi forum, but i didnt found one on this page (maybe i didnt look well) so im gonna try and ask it here: im trying to get some info from the net using TIdHTTP. It works but i dont know when it finishes (getting the page). Is there a way to know when all the page was...
  14. Tdrgabi

    control array

    Hi, i know this one is easy, but i havent worked much with builder and its puzzling me. How can i make an array of controls? I already have them on the interface, and i only want them to group toghether in an array.
  15. Tdrgabi

    Highlighting text

    Hi there. How can I highlight text (like code recognition) in a control. Borland C Builder I mean. The control I use is 'memo'. I just want a piece of advice about how to change the color or something of some text in the memo control. Thank you in advance. :)
  16. Tdrgabi

    stl queue simple problem

    yes i was looking for front ... but i always used to call it top ... never heard of front in a queue .... thanks, it works now.
  17. Tdrgabi

    stl queue simple problem

    hi a have an stl queue object in my program. i can use any functions in the queue but i cant seem to use "top()" ... it gives me that top() is not a member of queue. I looked in help and top is in queue ... is there a different way to write something like something=queueObj.top(); .... ?
  18. Tdrgabi

    Loop through controls on a dialog

    you can add them into an array of CWnd's because basically all controls are windows ... and then loop through the array and change the properties ....
  19. Tdrgabi

    Debug Window problem

    Hi ... how can i close/hide the black status window? i've written a mini game in java(Swing) and the buyer doesnt want to see the black window behind... is there a way to hide it?
  20. Tdrgabi

    How to get Screen Settings

    Hi, i need to get the current screen resolution no matter the OS . Is there any class or method for that?

Part and Inventory Search

Back
Top