CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: makdu

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: 'system.IO.FileNotFoundException' error for one option in vb project

    ARe you writing to a file?
    The program expect some file to be present .
    You check for the existance of file and if not present, create

    if (file not present)
    Creat file
    Endif
  2. Replies
    0
    Views
    1,465

    OCTOPUS+ for MULTI INERNET CONENCTION Released

    Hi,
    I have developed a c# application which utililize multiple internet in your computer to connect to internet. Product name is OCTOPUS+

    OCTOPUS+ is an innovative Internet Source Manger that...
  3. Thread: Stupid problem

    by makdu
    Replies
    4
    Views
    1,094

    Re: Stupid problem

    Post your code , May be we can help it better

    Makdu
    visit : http://www.octopusplus.com
  4. Replies
    1
    Views
    2,467

    Re: Wifi Packet Sniffer

    I found it that the connection for which i am trying to read packet is a WCDMA (PPP) type. Is there a way to read the destination ip originated from this type of connection
  5. Replies
    2
    Views
    10,745

    Re: raw sockets in wireless network (802.11)

    Is there a way to capture packets in PPP network
  6. Replies
    1
    Views
    2,467

    Wifi Packet Sniffer

    Hi,
    I am trying to find a solution to read the packet destination for an internet connection through wifi. I am able to do the same for a lan connection using packet sniffer example. But the same...
  7. Read IP address of all website currently visted

    Hi,
    I am trying to make an application which tries to read the website ip's currentely visited. I have found an example of packet sniffer in c#...
  8. Re: Command window prompt in uninstallable batch file for c# application

    I am creating the install shield for the application. This batch file will be added to the user program list, so that he can uninstall the application with out going to the addd/Remove option.
  9. Command window prompt in uninstallable batch file for c# application

    Hi,
    i have created a batch file for uninstall a c# application.

    @echo off

    @msiexec /qr /x {********}
    But when the user click the uninstall option, a command window is poping up.
    I...
  10. Replies
    2
    Views
    2,025

    Program to detect windows shut down

    Hi,
    I have an application and this application needs to close when the window shutdown happen. How can i detect that the system is shutting down from a C# program
  11. Replies
    9
    Views
    2,440

    Re: Whats wrong with system.diagnostics

    The file is not getting deleted


    System.Diagnostics.Process.Start("cmd.exe", @"/c route print > d:\file.txt"); // Get the route print to text file
    using (StreamReader streamReader =...
  12. Replies
    9
    Views
    2,440

    Re: Whats wrong with system.diagnostics

    i have started to do coing in c# just 4 days back. I want to get the route print command to be executed and get that to a file . So when i searched some forum, i got the reply to do with ...
  13. Replies
    9
    Views
    2,440

    Re: Whats wrong with system.diagnostics

    this is my complete code

    System.Diagnostics.Process.Start("cmd.exe", @"/c route print > d:\file.txt"); // Get the route print to text file
    StreamReader streamReader = new...
  14. Replies
    9
    Views
    2,440

    Whats wrong with system.diagnostics

    i want to delete file.txt


    System.Diagnostics.Process.Start("cmd.exe", @"/c del d:\\file.txt");
    but this is not deleting the file. any input?
  15. Replies
    4
    Views
    919

    Re: Some times Print function not working.

    If the code is commented out, even restarting the machine will not allow you to do something which is not there as a part of code
  16. Replies
    6
    Views
    1,144

    Re: Displaying the wrong results

    If there is a decimal expected in the calcuation result, then the integer variable will ignore it. Put break point and step through the program to see where you are going wrong?
  17. Replies
    2
    Views
    1,877

    Re: System.OverflowException (Please Help!)

    check these two lines


    FuelTankLCapacity.Value.ToString("F1")
    Dim LeftTotalFuel As Integer = (FuelTankLCapacity.Value * 8388608) / LeftTank.Value
    first you are getting a string...
  18. Thread: Search Icon

    by makdu
    Replies
    9
    Views
    1,665

    Re: Search Icon

    Can you post the code you wrote for this?
  19. Re: i want to mouseclick action on somewhere on the screen?

    Private Sub form_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick

    End Sub
    write the code in this function
  20. Replies
    6
    Views
    1,419

    Re: databinding in adodb connection

    I changed from adodb to oledb and now its working


    newn = New OleDbConnection
    newn.ConnectionString = "provider=VFPOLEDB.1;Data Source= D:\" & shopname
    newn.Open()

    Thanks...
  21. Replies
    6
    Views
    1,419

    Re: databinding in adodb connection

    The data binding done is wrong. if any one know the syntax for binding source , please let me know
    Here is what i tried with


    fcn = New ADODB.Connection
    fcn.ConnectionString =...
  22. Replies
    6
    Views
    1,419

    Re: databinding in adodb connection

    I feel like the problem is with the data binding using ADODB connection.


    fcn = New ADODB.Connection
    fcn.ConnectionString = "provider=VFPOLEDB.1;Data Source= D:\" & foldrname
    ...
  23. Replies
    6
    Views
    1,419

    Re: databinding in adodb connection

    I modified te code to


    rst.Open("SELECT lp.ITEM, lp.ORD, INVENT." & qt1 & ", INVENT." & qt2 & ", INVENT." & qt3 & ", INVENT." & qt4 & ", INVENT." & qt5 & ", INVENT." & qt6 & ", INVENT." & qt7...
  24. Replies
    6
    Views
    1,419

    [RESOLVED] databinding in adodb connection

    Hi,
    I am connecting to a foxpro table using adodb connection

    fcn = New ADODB.Connection
    fcn.ConnectionString = "provider=VFPOLEDB.1;Data Source= D:\" & shopname
    fcn.Open()...
  25. Replies
    17
    Views
    20,831

    Re: INDEX a table in VB.NET

    I have made some progress


    fcn = New ADODB.Connection
    fcn.ConnectionString = "provider=VFPOLEDB.1;Data Source=" &tablefolderpath
    fcn.Open()
    fcn.Execute("Execscript('Use sale...
Results 1 to 25 of 170
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured