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

    Change PBD reference in the Exe

    1. Define a ini file, in which creates a MyAppLibs section: MyAppLibs=d:\installation\a.pbd,c:\temp\b.pbd.... 2. in your program, at beginning always reads the ini file and load this path and set it as your application libraries path. Now you can change your PBDs list dynamically all the time.
  2. 6112

    How to get message from non-existing window?

    Thank you very very much Sir! Under your guide, I successfully made it! Program works greatly! It refreshes my C/C++ skills as well... I am so happy with the expert like you to have kindly helped me. Thank you again!
  3. 6112

    How to get message from non-existing window?

    Thank you very much. I know little C/C++ and tried. But failed. Could you please help more in details? Thank you in advance. I tried to write a DLL like this, but The WndProc() never get be called. What is wrong? // My DLL code: extern DllExport int WINAPI HookMyWnd(HWND hWnd, HWND hNotify) {...
  4. 6112

    How to get message from non-existing window?

    I created a window with API function CreateWindowEx(). Since the window object is not physically existing in my PB library, how can I write script under certain event, such as mouse click? I guessed I have to hook message of this window handle, and send message to a notify window... But how to...
  5. 6112

    SQL Server using OLEDB

    PB has a different but powerful and better way to handle all SQL statment... Study it pls. Not hard if you already know VB script. (Will be simpler, because of powerful)
  6. 6112

    Memory use - smartheap error

    With 6.5, do not use SelectRow, ScrollToRow.. I found they have memory leaking in side. Addison Lu
  7. 6112

    Sorting of Arrays - How is it done?

    Apart from above DS solution. you can actaully use ANY object with sort functionality in it. Example of using listbox, add your value in it, then get them back to your array sequentially. The magic will be done by listbox object (as long as it sets sort flag on.) Addison Lu
  8. 6112

    Triggering UE from Menu

    ParentWindow.Event ue_xxx(your argues) Addison Lu
  9. 6112

    System tray icon

    There are many ICONTRAY sample programs on the internet. Assume you know how to do it. The blinking then is reasonablly simple. All you have to do is to set a timer, and under timer event, keep change program icon. Simple like that. Addison Lu
  10. 6112

    Documentation for PBORC60.DLL

    Hi, the documentation are only available for V6. I found a English doc somewhere before but cannot remember now. I also found a FULL documentation on a Japanese site. Fortunately, I know Japanese so I got whole details about ORCA. Do you read Japanese? If so I can send you doc. May be it is...

Part and Inventory Search

Back
Top