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

Search:

Type: Posts; User: adbanginwar

Search: Search took 0.04 seconds.

  1. Replies
    5
    Views
    1,012

    Re: Help with a Sql Statement

    Have you opened the database with connection string?
    also you havent declared rst3.

    Declare them(Use Option Explicit).
  2. Replies
    7
    Views
    1,481

    Re: Problem with VB6 and msaccess query

    Its resolved. One of my columns had space at the end.

    Thanks for the info but Datamiser please tell me your method.
  3. Replies
    2
    Views
    1,163

    Re: Controling multiple IE pages using VB

    you can use internet explorer object to do the same in VBA.



    Dim IE As InternetExplorer
    Set IE = New InternetExplorer
    IE.Navigate2 "www.gmail.com"


    you can use multiple objects to access...
  4. Replies
    7
    Views
    1,481

    Re: Problem with VB6 and msaccess query

    can you tell me about your method? i can change my code accordingly.
    a small code snippet would be really helpful.
  5. Replies
    7
    Views
    1,481

    Re: Problem with VB6 and msaccess query

    Tried both adUseClient and adUseServer. still not working.

    I get following error;

    Runtime error '-2147467259(80004005)':
    Method 'Open of object ' _Recordset failed
  6. Replies
    6
    Views
    1,512

    Re: Simple Code - Help

    instead of range user cells(row,col).
    Here you provide integer as row and column.
    eg : for B you use 2, c 3, etc
  7. Re: pulling specific text from a notepad document

    You can import text file in excel. after importing it, you can do a find for your product and copy to the required sheet.
  8. Replies
    7
    Views
    1,481

    Problem with VB6 and msaccess query

    I am writing a code which extracts data from a msaccess database to create certain report. For this purpose I wrote couple of queries and tried them in msaccess. One of the query has multiple...
  9. Replies
    8
    Views
    1,110

    Re: login from web page....

    hi,
    you can use HTML DOM for this.
    you can look at the html source and find out following three things;
    1. userid text box id
    2. password text box ix
    3. the button you click to autheticate...
  10. Re: retriving xml from password protected site.

    thanks dglienna for all the help.
  11. Re: retriving xml from password protected site.

    thanks dglienna.
    one more help please, can you tell me the name of freeware DOM inspector?
  12. retriving xml from password protected site.

    hi,

    this is my requirement;
    1. i have to login to somesite which requires user authentication.
    2. then i have to give some unique id like transaction id or req id and press search.
    3. after...
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured