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

  1. Hammadi

    column error on datagrid

    I used a DataGridView to collect data from other classes, firstly you have to store data in strings then you add these string arrays to your DatagridView. Probably this sample can be helpful dataGridView1.Columns[0].DefaultCellStyle.Font = new Font(DataGridView.DefaultFont...
  2. Hammadi

    Activate and desactivate ActiveSync programetically in c or C#

    Hello Everybody Please is there someone who knows how to activate and deactivate ActiveSync programmatically in C or C# ? Regards
  3. Hammadi

    calling C++ dll from C#

    It is not an obligation to build your DLL in a class structure You can define it in this way. // in the .c file extern "C" __declspec(dllexport) int _stdcall Add(int a, in b) { return a+b; } // in the .h file extern "C" __declspec(dllexport) int _stdcall Add(int a, int b); Then copy your...
  4. Hammadi

    native error on Win CE 0xc000005

    Hi Steve I already replayed to this kind of problem please check the article in the same page sent in 19 Sep 06. //------------ Probably you need this sample to download your xml file and parse it xDoc.Load("myxmlfile.xml"); XmlNodeList name =...
  5. Hammadi

    native exception code 0xc0000005

    Hi If you will run your application in other host did u have the same problem? The main causes of this problems are the anti virus software are you running? try disabling it for now and see if that helps. There have been alot of posts recently about certain AV software blocking installation...
  6. Hammadi

    native exception code 0xc0000005

    The error 0xC0000005 is generated by an illegal "memory access violation". This can be caused by anything from faulty RAM, an incorrect/corrupt device driver, poorly written/updated software and more commonly under Windows XP Service pack 2, malware/adware installations. Usually you get this...
  7. Hammadi

    Wireless SSID - Is it Stored on Windows CE Device?

    I already generated the SSID using this any one of this two method, try to modifie it in order to obtain exactly the string represinting the SSID and not only checking it's existing. Sorry this source code is in c and not in vb. you can hide them in a dll as it was and call it from your vb...
  8. Hammadi

    problems with ADOCE 3..0

    try to check this two links http://www.odysseysoftware.com/documents/OSICreateObject.pdf#search=%22create%20the%20object%20ADOCE.Connection.3.0%22 http://www.devbuzz.com/content/zinc_intro_ADOCE_databases_pg1.asp regards
  9. Hammadi

    Help to choose the tool to develop for WinCE

    To reuse your work in C++ in .Net envirenment, I suggest to store them in a DLLs built for smart device and call them from your device application. Else you can't recall this C++ embedded in device application. for the tools you can check this link http://www.cam.com/windowsce.html Regards
  10. Hammadi

    How to search for a file in Windows CE 5.0

    To find your file you have to go to menu\programmes files\file explorer (My device). It is better that the extension of your file is supported by the WM like a .txt file Regards

Part and Inventory Search

Back
Top