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

    Object Reference for EXE and BPL

    Hi All, My application has an EXE and several BPLs. I have a unit implementing FormManager to keep track of all the opened forms in EXE. And this FormManager class implements SINGLETON pattern, which means only has ONE instance, and provide a global point of access to it. And this FormManager...
  2. heecm

    Debugging Question

    Hi, I have a breakpoint in a bpl which is calling a function inside MAIN application. When I tried to trace into it, it doesn't open and trace into that unit function. I have already set the 'Debug Source Path' to the correct one. Please help. Thanks. regards, CM
  3. heecm

    ShowMessage

    I think ShowMessage and MessageDlg are using MAIN form as parent. Is there any quick solution out of it apart from writing my own message dialog form? CM
  4. heecm

    ShowMessage

    Hi Steve, Maybe I am not clear in my question. What happen now in my app is I have a MAIN form open a CUST form. This CUST form has the override CreateParams so that it has its own handle in the Windows TaskBar. Now this CUST form is maximized and show in my entire desktop screen. Now let say...
  5. heecm

    ShowMessage

    Hi, I have a main form which will open many other forms with their own handles in Windows TaskBar using the following code: procedure TCdsEnvEdtFrm.CreateParams(var Params:TCreateParams); begin inherited CreateParams(Params); Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW...
  6. heecm

    Create Forms Dynamically and TaskBar

    Perfect. Thanks cheers, CM
  7. heecm

    Create Forms Dynamically and TaskBar

    No, the FAQ does not help. Basically what I want to achieve is like MS Outlook. When you double-click to read a mail, it will open a new form with its own handle (taskbar).
  8. heecm

    Create Forms Dynamically and TaskBar

    Hi I currently have a button with the following code: procedure TForm1.Button1Click(Sender: TObject); var A: TForm2; begin A := TForm2.Create(self); A.Show; end; But all forms created are under the application task in Windows TaskBar. How do I create a form dynamically and have it...
  9. heecm

    unit cross referencing in BPL

    Hi, I am a newbie in bpl and run into the following problem. My application structure is like this: ABC.exe CdsRgy.pas (unit only) DlgStr.pas (unit only) CdsLgn (form) ..... PlgSet.bpl CdsEnv (form) CdsQly.pas (unit...
  10. heecm

    Mobile Internet (Wireless Broadband) Accessing Citrix Server

    Hi, Our company is setting up a support team for our client. Each support team member will be equipped with a notebook and MOBILE internet connection something like 3G GPRS. This wireless broadband is Dynamic IP based. There is a need to access client production system (Tandem) thru Citrix...

Part and Inventory Search

Back
Top