Search:

Type: Posts; User: thrillseeker

Page 1 of 2 1 2

Search: Search took 0.05 seconds.

  1. Re: Users currentlyh logged in to a domain

    Thanks for your reply hack, but no - i'm looking for currently logged in users to the network. I'm guessing this would be some kind of WMI call but not overly sure about where I need to look to...
  2. Users currentlyh logged in to a domain

    Hi all,

    Tried lots of googles and tried searching the forums but to no luck so I'm hoping someone will be able to help me.

    I am trying to get a VB.net app I wrote to query the domain (Active...
  3. VS 2008 'ListCount' is not a member of 'System.Windows.Forms.ListBox'

    Hi all,

    The n00b is back.

    Got this error:
    Error 2 'ListCount' is not a member of 'System.Windows.Forms.ListBox'. C:\STRCC Network Admin\NetworkAdmin\RoomPlan.vb 5 22 NetworkAdmin

    When...
  4. Replies
    2
    Views
    600

    VS 2008 Listbox items

    Hi all ... me again.

    I have some info in a listbox on another form. I want that information parsed to another form, and I would like to, for how ever many items there are in a listbox, create a...
  5. Thread: Ping

    by thrillseeker
    Replies
    2
    Views
    442

    Ping

    Hi all, me again!

    Trying to do a ping:




    If My.Computer.Network.Ping(selecteditem) Then
    ovStatus.BackColor = Color.GreenYellow
  6. Replies
    5
    Views
    821

    VS 2008 Re: COUNT func

    Will do, nah i'm trying to do something else ;) there is a method in my madness!

    It won't let me give you any more until I spread it more, I did try!
  7. Replies
    5
    Views
    821

    VS 2008 Re: COUNT func

    chris128 - you seem to be my saviour. I'm parsing details from your control into another textbox :).

    thanks so much
  8. Replies
    5
    Views
    821

    VS 2008 [RESOLVED] COUNT func

    Hi all

    I am writing (slowly) a VB.net application for my AD.

    Got the AD integration working, and got the computer name parsing to a variable, but it has CN= in front of it, which I don't want....
  9. Re: Populate TreeView with Active Directory objects

    Thanks chris128 - I have got the control working. Very nice! :)

    Look forward to using your updated version later.
  10. Re: Populate TreeView with Active Directory objects

    Yes! :)
  11. Re: Populate TreeView with Active Directory objects

    I get this error when I run the form with the control:

    An error occurred creating the form. See Exception.InnerException for details. The error is: Could not load file or assembly...
  12. Re: Populate TreeView with Active Directory objects

    Nice one ... i'll try and give this a go this morning. Thanks!! :)
  13. Re: Populate TreeView with Active Directory objects

    thanks :) I look forward to seeing something and thanks for writing it in the first place!
  14. Re: Populate TreeView with Active Directory objects

    Own project and added the control in :) Did take the example proj apart though ....
  15. Re: Populate TreeView with Active Directory objects

    I think I'm being thick here, I get the error: Error 1 'LoadDirectoryObjectsAsync' is not a member of 'System.Windows.Forms.TreeView'. It is based in "ADTreeView.vb".

    It's great, apart from that!...
  16. Replies
    3
    Views
    935

    VS 2008 Re: Tree Nodes/OU List

    Nope I'm not but I will look at it now! thanks
  17. Replies
    3
    Views
    935

    VS 2008 Tree Nodes/OU List

    Hi all

    Let me explain what I am trying to do.

    Am writing a simple program which, when a user clicks on a OU - it grabs the PCs from active directory and puts it in a list box. I've got this...
  18. Replies
    7
    Views
    1,318

    VS 2008 Re: Invalid dn syntax

    Thanks Chris128, and now I get the error that A referral was returned from the server (directoryservicescomexception was unhandled).
  19. Replies
    7
    Views
    1,318

    VS 2008 Re: Invalid dn syntax

    Hi,

    treeval = e.Node.Text

    Dim strVal As String = "LDAP://10.22.67.21:389/OU=Linkway,OU=Desktops,OU=Devices,DC=domain,DC=suffix"

    Dim domain As New DirectoryEntry(strVal,...
  20. Replies
    7
    Views
    1,318

    VS 2008 Re: Invalid dn syntax

    Thanks, it was helpful. I now get the password/Username is incorrect, when it is not, though?
  21. Replies
    7
    Views
    1,318

    VS 2008 Invalid dn syntax

    Hi all,

    gettign a weird error here.
    Trying to run the following code:


    treeval = e.Node.Text

    Dim strVal As String = New...
  22. Replies
    4
    Views
    3,133

    Recursive file copy

    Hi all

    Firstly I did not write this code and am taking no credit - my VB.net isn't as good as my PHP!

    I was wondering if any of you help, So, I got the code below. How would you put in that if...
  23. Replies
    19
    Views
    2,236

    Re: [2005] Access and vb.net question

    Thanks talkro :)

    Now, its displaying a syntax error message. I've changed the sql to:


    Dim sql = "INSERT INTO users (username, password, usrlvel) VALUES (username='" & txtUsername.Text...
  24. Replies
    19
    Views
    2,236

    Re: [2005] Access and vb.net question

    Any idea on how to do this?

    cHEERS
  25. Replies
    19
    Views
    2,236

    [2005] Access and vb.net question

    Hi all,

    Trying to get the below code to insert records into a database I've created - but I cant seem to get where I am going wrong here as its just not working!




    Imports System.Data...
  26. Re: [2005] Assigning a text box in one form to another textbox in another form

    Oh and fyi, the timer on the other form is started on a MouseDown Event and a switch on to ".Enabled = True"

    Don't know if this will help with the solution.

    Thanks all again for your help :)
  27. Re: [2005] Assigning a text box in one form to another textbox in another form

    Yes. I have a textbox in the other form which counts up to a certain number of digits and changes the digit with the interval. I literally want to mirror what this is doing on another form but have...
  28. Re: [2005] Assigning a text box in one form to another textbox in another form

    Hi all,

    So thanks for the replys :). So, I've assigned the textboxes to eachother, and it gets the value. But, I;m working on a timer and the values are ever changing. Could anyone give me any...
  29. Replies
    2
    Views
    533

    [2005] Events

    Hi all

    Just a simple question .... how do I call an event (such as Mousedown) like this:

    btnHi.event

    Can I do it that way? I want to call it from a button in the other form, got that all set...
  30. Re: [2005] Assigning a text box in one form to another textbox in another form

    Is there an easier way of doing this? Sorry, I'm no good with all the termonlogies. Not expecting anyone to do it for me ... but maybe an example?

    Thank you all again!
  31. [2005] Assigning a text box in one form to another textbox in another form

    Hi al,

    Can anyone please give me a slight bit of expertiese in how I could assign a text box in one form to another textbox in another form.

    I'm clueless on it!

    Cheers.

    thrillseeker
  32. Replies
    5
    Views
    682

    Re: [2005] Petrol

    I'm not asking you to do this at all, seeing as I know that its best to learn yourself when programming. I was meerly asking for a direction on the kind of things to look at.

    But thanks for all...
  33. Replies
    5
    Views
    682

    Re: [2005] Petrol

    Ha, this sounds so rude, but thats not what I was asking?
  34. Replies
    5
    Views
    682

    [2005] Petrol

    Hello again.

    This is the homework project of the month LOL.

    What I need to do is that I have the whole seven segment display working, but I was wonedering how I could get it ticking so when...
  35. Re: [2005] Picking a portion of a variable

    It's okay - resolved now
  36. [RESOLVED] [2005] Picking a portion of a variable

    Hi all,

    I want to pick out a number from a Variable (says it was 0123.45 and I wanted to pick out 5).

    How would I go about doing this?

    Cheers,

    t
  37. Replies
    2
    Views
    592

    Re: [2005] FormatNumber

    Thank you very much Casey :)

    Resolved!
  38. Replies
    2
    Views
    592

    [RESOLVED] [2005] FormatNumber

    Hi all,

    Hopefully this can be answered quickly by someone! :)

    How can I get FormatNumber to display a number in this format (000.00). I am doing a timer where it counts up in this format...
  39. Replies
    6
    Views
    717

    Re: [2005] access DB update

    Thanks for your help Alexandru and jmcilhinney :)

    I've done this:


    Imports System.Data.OleDb
    Public Class Form2

    Dim newconn
    Dim connection As New...
  40. Replies
    6
    Views
    717

    [2005] access DB update

    Hi all AGAIN, I appreciate all the help - I am learning!

    I am currently getting an error when i try and update an access database

    Value of type 'String' cannot be converted to...
Results 1 to 40 of 76
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width