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 sizbut 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: *

  1. Bachatero

    How to implement the WMI WIN32 calls

    It is working now, I changed: var Value: Longint; To var Value: Cardinal; Thanks, Johan
  2. Bachatero

    How to implement the WMI WIN32 calls

    Thanks for the information. Hi Glenn, I used the code that was posted on the: Get System information from WMI faq102-7315 I have just a question: The function below generates the following error code: function WMIRowFindFirst(ObjectSet: ISWbemObjectSet; var ENum: IEnumVariant; var tempobj...
  3. Bachatero

    How to implement the WMI WIN32 calls

    Hi all, I use VBS (Visual Basic Script) to automate some tasks. However, sometimes I miss some nice and handy features in VBS. As well I use Borland C++. Now I will try to use borland to perform these tasks. Do somebody know were I can find some simple examples how to implement the WMI Win32...
  4. Bachatero

    Problem with reading the correct subkey's

    ...Select Case strValue Case "3Com EtherLink XL 10/100 PCI TX NIC (3C905B-TX)" WScript.Echo "** Controleer de netwerk instelling handmatig! **" Exit Sub Case "SysKonnect SK-9521 V2.0 10/100/1000Base-T Adapter, PCI, Copper RJ-45"...
  5. Bachatero

    How to detect the speed of the network card in XP

    OK, I found it. Johan
  6. Bachatero

    How to detect the speed of the network card in XP

    Is it posible to detect the speed of a network card in VBS. e.g., is the speed of the network card set to auto, 100BM/full, etc. I tried to find it in the windows register, but I did not find something. Is this anayway posible with VBS. Thanks in advance, Johan
  7. Bachatero

    Borland Codegear 2007 and Dual monitor

    I would like to use my left hand monitor for all my toolbars and my right hand monitor for all my units and forms. Does anyone know how to configure this, because I always have to rearange the toolbars if C++ Builder is finished during started up. Johan
  8. Bachatero

    Button style B C++6 vs B C++ 2007

    I use my original created project in Borland C++6 now in Borland C++ 2007. This works perfect. But, I would like to use the new style buttons. If I created a button in B C++ 6, I always got buttons with rectangular corners. If I create a new project in B C++ 2007, I got the new style button...
  9. Bachatero

    Question about open dialog

    I found it! I changed the field alowMultiSelect in the object inspector from FALSE to TRUE. Johan
  10. Bachatero

    Question about open dialog

    Hi all, I use in my program the following command to open a file: (OpenDialog->Execute()) I am able to select a file. But, what should I do if I want to select more than one file at a time in the open dialog, e.g. with the shift key pressed. This does not work. I can now only open one...
  11. Bachatero

    How to change the filename of a file

    Hi all, I would like to rename a lot of file names. I use the following command to extract the file name: MyFileName = ExtractFileName(OpenDialog->FileName); So, if I change the variable MyFileName, how can I update the filename of the file itself. My idea is: 1) Open the file. 2) Extract...
  12. Bachatero

    Hi All, I tried to fill some dat

    I solved it. I removed the TListView and inserted it again. Maybe some of the properties were not set correctly. Johan
  13. Bachatero

    Hi All, I tried to fill some dat

    ...Uint16 lengte16; AcrTag16 ptr16; AcrTag32 ptr32; AnsiString vr[3000]; AnsiString aVR; AnsiString MsgStr; String aFileName; char *DataString [300]; char *Data[500]; char Lengte[30]; char Group[300],Element[300]; int tagCount = 1; aFileName =...
  14. Bachatero

    How to organize program code into different units

    Hi all, Since I did spit up my code into different units I got the following error: [Linker Error] Unresolved external '_GainValues' referenced from I:\C++_PROJECTS_JOHAN\NEMA_REVIEW\MAIN.OBJ Any help is very appreciated! Thanks in advance, Johan
  15. Bachatero

    How to organize program code into different units

    ...Read of address 000002F0. --------------------------- OK --------------------------- The program stops at: OpenDialog->Filter = "Uniformity|*.ima"; see colored text bool TUniformity::LeesUniformityMap() { int FileSize; long *buffer; int length,a; char aFileName[20]...
  16. Bachatero

    How to organize program code into different units

    Ok, I moved: TOpenDialog *OpenDialog; TButton *bDicomTags; from the Uniformity.h to the Uniformity.cpp and now my E2451 error is gone. However, if I call Uniformity->LeesUniformityMap(); now I got the following error: [C++ Error] Main.cpp(344): E2316 'LeesUniformityMap' is not a member of...
  17. Bachatero

    How to organize program code into different units

    ...Undefined symbol 'OpenDialog' However, I defined the variables as follows: class TUniformity : public TForm { __published: TOpenDialog *OpenDialog; TButton *bDicomTags; private: // private user declarations public: // public user declarations...
  18. Bachatero

    Please help!! How can I contact the system administrator of the GID Fo

    Hi James, No, I don't think so. It is the following forum: http://www.gidforums.com I did not know that Tek-Tips had a GID forum aswell Johan
  19. Bachatero

    Please help!! How can I contact the system administrator of the GID Fo

    Is here someone who also use the GID Forums ??? I am not able to login anymore. It comes with the following message: Bachatero, you do not have permission to access this page. This could be due to one of several reasons: Your user account may not have sufficient privileges to access this...
  20. Bachatero

    How to organize program code into different units

    Hi all, My program contains a mainform with 5 tabpages and 3 other forms. I would like to split up my code that belongs to the mainform into different units, for every tabpage a seperate unit. However, I noticed that if you create a new form it creates a new unit as well. So, the general...

Part and Inventory Search

Back
Top