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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by robert201

  1. robert201

    DLL to call a VB function

    Hello, VS 2008 I have created a C++ smart device DLL and added it to my project. From my VB program I can call the functions successfully in the DLL. Using the code below <DllImportAttribute("WIN32SmartDLL.dll")> _ Private Shared Function AddNumbers(ByVal a As Integer, ByVal b As Integer)...
  2. robert201

    reference a C++ dll in a C# program

    Hello, I found the solution. You have to create a SmartDevice WIN32 DLL. Add it into your project. Project | Existing Item | Set it property to "copy if newer". The code is pretty much the same. Steve
  3. robert201

    reference a C++ dll in a C# program

    Hello, I went to browse for the dll, however when I click ok to add it I get the following message: "A reference to 'TEST_SIP' could not be added" Thanks for anymore advice, Steve
  4. robert201

    reference a C++ dll in a C# program

    Hello, I was thinking about that. However, the documents I read said nothing about adding a reference. How would I add a reference? Many thank for your help, Steve
  5. robert201

    reference a C++ dll in a C# program

    Hello, VS 3.5 I have created a simple C++ DLL, and I want to use this in my C# program. However, I am getting a Can't find PInvoke DLL 'TEST_SIP.dll I have placed the DLL in my debug folder where my C# program is executed from. I am not sure if that is the correct place to put it. Not sure...
  6. robert201

    installation for win32 for smart device

    Hello, I have created a WIN32 smart device for windows mobile 5. I have only done C# CF installation by creating the cab files. However, I am not sure if this is the same as creating a WIN32 smart device. If anyone can direct me to any links that has a step by step. Many thanks for any...
  7. robert201

    client server sending messages

    Hello, I have developed a client server application using C. I just want to be able to send a message from the client to the server. And the server to reply back with another message. So that I can see that the 2 have connected to each other. However, the 2 programs run ok without any errors...
  8. robert201

    Static function explained

    Hello, I am just writing simple threading program in C# program, I am coming from VB.Net and just wondering why my WriteY() function has to be a static. I through this could be public or private. Can anyone explain why it has to be a static. Many thanks, Steve using System; using...
  9. robert201

    vxml catch user pin number

    Hello, I am new to vxml. I am just wondering if anyone could point me in the right direction to capturer a PIN number that the user will enter. The PIN number will be 12 digits in length. Many thanks for any suggestions, Steve
  10. robert201

    Play music in webpage

    Hello, The customer wants to download a music file for a path that is on the server, then play that in the web form. So it will be like having window media player embedded in the web form itself. I have the code for downloading and playing. However, a dialog will popup and when they click open...
  11. robert201

    Hiding columns in Datagrid - value doesn't fall within expected range

    Hello, This is using the Compact Frame 2.0 I have found some code that seems to work. However, the idea of the grid is for the user to keep adding new products to the datagrid. Even though the columns that are needed are added ok. When the user attempts to add a second row there is an error...
  12. robert201

    Hiding columns in a datagrid

    Hello VS 2003. I am trying to hide some columns in a datagrid. The datagrid is bound to a typed dataset data source. This is the code I have used to set the column width to zero. However, as there are many columns to hide I get left with a bold black line where the column should have been. So...
  13. robert201

    Filling a typed dataset with multiple tables

    Hello, VS 2005 I am using MySql as my database. I can fill individual tables, however when I query to select from 2 different tables and do an add watch on the dataset the count for those 2 tables is 0. Everything runs without errors. However, when I check count property for the table in the...
  14. robert201

    Multi threaded - saving data in the background

    Hello, VS 2005 Windows Mobile 6.0 I have an application that get data from a web service. This gets done in the main UI thread, as the application cannot move on until this is finished. However, once the data has been loaded into the dataset, I want to save the contents of the tables in XML...
  15. robert201

    Adding a combo box to a datagrid CF 2.0

    Hello, I am developing a mobile application. CF 2.0 WM 6.0 I am using the datagrid and need a column that has a combo box. The combo box will be used to hold a quantity for up to 20 items. So 1 to 20 for the user to select from. In windows forms you have the datagridview and can easily at a...

Part and Inventory Search

Back
Top