Search results for query: *

  1. C

    How to get information if an event is handled???

    Hi, i am writing a class that is raising an event wich notifies about Alarms and Errors. The Problem is for Example: public event ErrorMessageAvailable(code as errorcode) sub NotifyError() error = getError() if error then raiseevent ErrorMessageAvailable(error.Code)...
  2. C

    Problems with MenuItem and Threading

    Hi, I have a problem Programming adding different menuitems to my mainForm.MainMenu! For Example lets see a part of the UpdateMenu function in the MainForm Class sub UpdateMenu() if Global.Parameters.MenuIsLoaded then MainMenu.menuItems.add(Global.Parameters.DynamicMenu) endif end sub...
  3. C

    Panel for configuration

    Hi, I want to put a panel into a class lib dll wich offers a specialized config GUI for the Hardwaredriver included in the same dll. What have I to do to implement such a Panel as vb.net class an how can i load easily the Panel in my Main Form? I've tried AddNewItem -> Component but I had no...
  4. C

    New Form for CompactFramwork always maximized

    Hi, i'm writing a Software for pda (WinCe CF) I want to create a new Form whos size locks like a MsgBox. But when i call MyForm.show() it is Fullscreen on the pda! have I missed a Parameter, or wats going on there! How can I create a litle individual Window? Thankyou Christian
  5. C

    programming serial CommPort .NetCF for Pocket PC

    Hi, i have to write a tool in vb.net to configure our Hardware via a serialPort. One Build of the Software has to run on Win32 and WinCe Machines. For Win32 i have declared the following: Private Declare Function CreateFile Lib "kernel32.dll" Alias "CreateFileA" _ (ByVal lpFileName As...
Back
Top