Search results for query: *

  • Users: ShiftySid
  • Content: Threads
  • Order by date
  1. S

    A strange request...

    Hi, this is a bit of stange request, but... I have been teaching myself VB.Net off and on for the past 5 years. I work professionally as a Technical Support Analyst but I want to move into Software Development. My problem is this - because I am self-taught, I have no idea at what level I am...
  2. S

    Quote within String

    Any ideas why this won't work: WORKS: Shell("shutdown -s -m \\" & txtItemName.Text) DOESN'T WORK: Shell("shutdown -s -m \\" & txtItemName.Text & " " & Chr(34) & "Remote shutdown of this machine has been initiated by IT" & Chr(34)) DOS Syntax for shutdown command: eg: shutdown -s -m...
  3. S

    Question Query DHCP database

    Hi all, I've been searching the web but can't find anything I need for this... is it possible to query the DHCP database on a remote server, using VB 2008? I need to send the query to a remote machine, retrieve the host names and their allocated IP addresses and dump the details into a text box...
  4. S

    Problem deploying EXE

    Hi guys, I have a problem that's been bugging me for ages and I' hoping someone will be able to help me out. I have written VB.Net front-end to an access database. Running on my development computer, it's fine because the path to the database is hard-coded (ie...
  5. S

    Help needed - wildcard searching

    I have an Access database, with a VB front-end. I have coded a button to search for records. The button works, but only if the record (in this case, a Surname) is typed in exactly. It does not work for wildcard searching (eg: *smi* to find all names containing those letters. I would have to...
  6. S

    Unique, Random Number Generator

    Hi, I am trying to create code to display ten UNIQUE numbers between 0 and 10 in some text boxes. I can get it to display random numbers in the text boxes, but I have duplicate numbers. Does anyone know how I can code it, so that duplicates are eliminated? My form consists of ten text...
Back
Top