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

Search:

Type: Posts; User: Martin_SBT

Page 1 of 4 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    1,380

    Computer inventory program

    Hi all
    i am using VS2003 ,vbnet

    I need to build a program that will gather the following informations from a computers:
    -List all hardware
    -list all software installed
    -list all user accounts...
  2. Replies
    1
    Views
    815

    Need help with OPC server (COM )

    I wrote my first OPC server in VB.net using an OPC toolbox that i bought.
    Everything works great but i still need to fix one thing...

    As a note, my OPC server doesnt run as a service.

    Since...
  3. Replies
    5
    Views
    1,273

    Re: Dealing with large collections

    Thanks guys for replying! Its great to have help from knowledgeable peoples like you!

    Let me explain a bit what i am doing. I am building a custom GUI interface to a software that has an API...
  4. Replies
    5
    Views
    1,273

    Dealing with large collections

    i use VS2003.
    I have a huge collection that contains More than 9000 items (and subitems).
    Itterating throught that array takes a long time and i was wandering how to convert that collection to an...
  5. Replies
    3
    Views
    1,054

    No PostBack on Button click

    webform contain couple of textboxes within panels and a server control button.

    when i click on my server control button on my webform, my code retrieves new information from a collection and the...
  6. Re: how to generate error on custom class instantiation??

    got it!

    i followed informations found at the following link on how to throw exceptions and it works grrrrreat!
    ...
  7. how to generate error on custom class instantiation??

    (asp.net with vb.net in VS2003)

    I got a custom Class with a "Sub New" in it. That sub New contains code that make some calls to a COM dll component. In that sub New, i can catch the exception...
  8. Replies
    10
    Views
    636

    Re: Need helps with Button server control

    I Just learned something new! Thanks so much Jasonli!!!
    In my page-load event i had a server.transfer to my main form! I am learning asp.net slowly and i didnt know that when i click a button on my...
  9. Replies
    10
    Views
    636

    Re: Need helps with Button server control

    Anyone please? :cry:

    When i click on my button on the second form, instead of executing the code of the On Click event it fire up my 1st form! Anyone can explain me why?

    Thanks
  10. Replies
    10
    Views
    636

    Re: Need helps with Button server control

    that still doesnt explain why when i click on a button of my second form it take me back to my logon form????

    Anybody can help me understanding why it is doing that??
  11. Replies
    10
    Views
    636

    Re: Need helps with Button server control

    Actually i have more that one button on my second form. I didnt say anything about it cause i ddint know it was making any difference.

    what part of my code are you interested in? i got a lot...
    ...
  12. Replies
    10
    Views
    636

    Re: Need helps with Button server control

    Hi Jasonli

    I was suspecting server.transfer to cause that problem so i did tested using response.redirect and it does the exact same thing!! (??)

    What will be the benefits for me to use form...
  13. Replies
    10
    Views
    636

    Need helps with Button server control

    Ok i have been spending days figuring this out so the one that will help me fix that will be my idol!!!!!!!!!! :)

    I am building my asp.net project in VS2003 using VB.net

    I got two forms: my...
  14. Re: How do i reference asp.net controls in vb??

    ok i found what it was!

    the textbox was a child control of the TabStrip control so instead of

    mycontrol as control = me.findcontrol("ID")

    i had to use:
    mycontrol as control =...
  15. Re: How do i reference asp.net controls in vb??

    no i cant see thme in intellisense. And there are no declaration for my controls in the WebForm1.aspx.vb

    and if i add a declaration, lets say:

    Protected blah bla bla

    i can sure now access...
  16. Re: How do i reference asp.net controls in vb??

    nope! still the same error!
  17. Re: How do i reference asp.net controls in vb??

    hi mcmcom

    when you say "Code Behind" i guess it means my "WebForm1.aspx.vb" ??
    (sorry for the goofy question... :blush: )

    If so then NO, there is no declaration for the control. And i also...
  18. Re: How do i reference asp.net controls in vb??

    if i look at the id of my control in HTML view it is:

    "EmployeeNumberTextBox"

    Now as you suggested i added the following declaration on top of my webform:

    Dim employeeNumberbox As...
  19. How do i reference asp.net controls in vb??

    Please be patient with me as i am new to asp.net! :)

    I am sure this is an easy question for you guys...

    i am using VS 2003 asp.net 1.1 with VB.net

    i created my controls in Design view and...
  20. Replies
    0
    Views
    502

    SQL query question

    I know how to fetch data from an excel file and fill a dataset with the data.


    Dim MyConnection As System.Data.OleDb.OleDbConnection
    Dim ExcelPath As String = F1.InstallPath & "Gabarit...
  21. Replies
    5
    Views
    890

    Re: Compare text file "Key lines"

    Cool! Thanks a million Kebo!
    Codeguru is such a great ressource for somebody that wants to learn like me! :)

    I will never thank you enough Kebo!!

    :thumb:
  22. Replies
    5
    Views
    890

    Re: Compare text file "Key lines"

    Thanks Kebo that will get me started!
    The oly thing i need to figure out is how to compare only the 50 first characters of the Lines.
  23. Replies
    5
    Views
    890

    Re: Compare text file "Key lines"

    I know it may sound goofy question but i am learning slowly vb.net and i really need help with this. Anyone could help me out? :blush:
  24. Replies
    5
    Views
    890

    Compare text file "Key lines"

    I got 2 text files that i need to compare the following way:

    -compare the 50 first characters of lines 1, 20 and 50
    -see if each files contains same numbers of lines

    If both above conditions...
  25. Replies
    5
    Views
    6,971

    Re: Please help with GetProcessByID

    iT WORKS! :thumb:

    Thank you man!
Results 1 to 25 of 84
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured