Search results for query: *

  1. A

    Regarding VB.net connectivty with oracle

    hi, Try this link you will get all connection string.. http://www.connectionstrings.com/ Happy Coding
  2. A

    app path Help

    Hi, MY Namespace is only available in VS 2005 only. So if you are using .NET earlier use following code. If System.IO.File.Exists("..\..\t1.txt") = True Then MsgBox("ok") Else MsgBox("no") End If Happy Coding...
  3. A

    Events during image loading

    Hi, If you want to run more than one process at a time use threading. I think it will solve your problem. Happy coding..
  4. A

    app path Help

    Hi, Try this code it will check the file from the application directory. 't1.txt file is in the application directory 'to go to one parent directory use ..\ 'in this case my application run from \AppFolder\bin\debug folder If My.Computer.FileSystem.FileExists("..\..\t1.txt") = TrueThen...
  5. A

    stackOvelflowException ?

    Hi, Can you post the details of event, that occurs the error. it seems to casting problem, i suggest if you know the event causing the error, create trace file in your application and set flag to 1 to record all trace error, and post the trace log file. Happy coding.
Back
Top