Search results for query: *

  1. C

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

    Thanks, this seems to be a good Idea! I permanetly thought about solutions that the handling method will not recongize, but i didn't found something! Your idea will be a good alternative... Christian B
  2. 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)...
  3. 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...
  4. 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...
  5. 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
  6. C

    programming serial CommPort .NetCF for Pocket PC

    i have searched for "coredll.dll" in All directories on my pda and have found it in the \Windows Directory
  7. C

    programming serial CommPort .NetCF for Pocket PC

    HI, i again... I have testet FileCreateCE with FileSystem strings as "\program files\test.dat" too, but the same result also i have testet to declare FileCreateCe with Alias "FileCreate" or "FileCreateW" nothing works I'm really despaired
  8. C

    Cannot access a disposed object named "Form2"

    Hi, i think you want your form not showing for a while!? Did you use fromTwo.close() for this!? this Method will remove the form Object from your memory and its normal when you can't access later! Instead use formTwo.hide() formTwo.show() i hope i couls help you
  9. 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