Search results for query: *

  1. T

    establishing a TCP connection in pocket pc emulator

    it is long time I haven't been working on mobile application already, but I will have a look at the past stuff to show you, just keep cheking this thread
  2. T

    Free vb.net code

    http://www.freevbcode.com/
  3. T

    Ce.NET Registry

    CE does support registry. Here is the module that you can use to read and write registry Public Declare Function RegOpenKeyEx Lib "Coredll" Alias "RegOpenKeyExW" (ByVal hKey As Integer, ByVal lpSubKey As String, ByVal ulOptions As Integer, ByVal samDesired As Integer, ByRef phkResult As...
  4. T

    establishing a TCP connection in pocket pc emulator

    Hi there, the Pocket PC will not take 127.0.0.1 as the IP for the Desktop PC, I f you try 192.168.55.100 it may work, if not I will give you my client-server application, which have already worked
  5. T

    Need help in GPS application

    There is a program called Mapinfo X Mobile (www.mapinfo.com), which will help you to create map application. The control classes only can used with Visual Studio 2005.
  6. T

    How ro make phone call on Pocket PC

    You only can use pocket pc as the same as a dektop pc, which use Voice Chat talk to other pcs, and use Voice IP to make phone call to other phones. So you can set up TCP/IP connection to a server which can make calls to the phones. Cheers,
  7. T

    Error on running smartdevice application on HP 2200

    Hi there, I have created an application to run on the PDA as a client. I was running ok til I accidently run it as a realease instead of debugging. ANd now I got this error everytime I start to do anything with the apllication ( it stills can load properly). The error is An unhandled exception...
  8. T

    Draw on dektop

    Hi all, I'm quite new to the graphic side of vb.net, and I just wonder if you can draw on the dektop screen programmatically in a window application. Thanks for any help.
  9. T

    Deploy on a virtual server

    I'm not sure what you really mean, but what you can do is, you can put a value in the web configure file (web.config,in the project) to specify the name of the virtual server. <add key="ServerName" value="SISS1" /> then you can get this by using the following function...
  10. T

    packaging an access database in asp.net

    Hi there, I am pretty sure that 's not gonna work. To be able to access the database you got to create a ODBC connection. Before you do this, you got to check if the ODBC you want to create already existed or not, this topic can help you: http://www.vbdotnetforums.com/showthread.php?t=6028
  11. T

    Set up SQL Server automatically

    Hello, I'm creating an vb.net application that working with SQL server 2003, I want to create a set up package that can indentify if the SQL Server already installed on the local computer or not, if not then the set up package needs to set up one. Can anybody give me an idea urgently please...
  12. T

    Will setup/installer create ODBC DSN automatically?

    no need of deployment Hi there, YOu can make the program automatically create the ODBC in form load ( after checking if the ODBC exists or not). Here is the function to check if the ODBC is there Public Sub FetchDSNs() Dim ReturnValue As Short Dim DSNName As String Dim...
Back
Top