Search:

Type: Posts; User: Ishamel

Page 1 of 4 1 2 3 4

Search: Search took 0.09 seconds.

  1. Cheers PlenderJ - that worked a treat. .....and...

    Cheers PlenderJ - that worked a treat. .....and it was much faster on the LAN. :)
  2. thanks (...i think :bigyello: ) I found some...

    thanks (...i think :bigyello: )

    I found some code that allows you to ping a computer by ip address, but I was wondering if anyone knew how to ping a computer by the "computer name".

    Basically,...
  3. How to determine if a remote PC is powered on?

    Does anyone know how to quickly determine if a remote PC on a local network is powered on or off using the computer's name?

    Thanks in advance.
  4. Thread: Cartoons

    by Ishamel
    Replies
    110
    Views
    3,425

    Here's a couple of golden oldies that I don't...

    Here's a couple of golden oldies that I don't think have been mentioned yet.

    Battle of the Planets (The one with the flying R2D2 robot & the ship that turned into a flaming pheonix)

    &
    ...
  5. Thread: Jokes...

    by Ishamel
    Replies
    88
    Views
    4,148

    The husband comes home from an exhausting day at...

    The husband comes home from an exhausting day at work, plops down on the
    couch in front of the television, and tells his wife, "Get me a beer before it
    starts."

    The wife sighs and gets him a...
  6. Thread: Jokes...

    by Ishamel
    Replies
    88
    Views
    4,148

    Wind

    This young freshman finally gets a date with a beautiful woman in
    one of his university classes. But she tells him that before they can
    go on a date he has to come over and have dinner with her...
  7. Thread: Jokes...

    by Ishamel
    Replies
    88
    Views
    4,148

    Little Red Riding Hood is skipping down the road...

    Little Red Riding Hood is skipping down the road when she sees the
    Big Bad Wolf crouched down behind a log.

    "My what big eyes you have, Mr Wolf",says Little Red Riding Hood.

    The wolf jumps up...
  8. Replies
    17
    Views
    511

    MOT = Ministry of Transport. In Britain you...

    MOT = Ministry of Transport.

    In Britain you have to get an MOT certificate every twelve months to ensure that your vehicle is road worthy.

    Not sure what the American version is. (by the looks...
  9. Replies
    17
    Views
    511

    Did you fail your MOT?? :)

    Did you fail your MOT??

    :)
  10. Thread: Jokes...

    by Ishamel
    Replies
    88
    Views
    4,148

    Woman : A Chemical Analysis

    Element Name: Woman
    Periodic Chart Symbol: Wo
    Discoverer: Adam
    Atomic Mass: Generally accepted as 110 lbs., but known to vary from 110 to 550 lbs.
    Occurence: Copious quantities in all urban...
  11. Thread: Jokes...

    by Ishamel
    Replies
    88
    Views
    4,148

    I like this one. Men are from Mars, Women are...

    I like this one.

    Men are from Mars, Women are from Venus

    HER STORY:
    He was in an odd mood when I got to the pub, I thought it might
    have been because I was a bit late but he didn't say...
  12. I think this will work. msgbox...

    I think this will work.



    msgbox rst(lastmonth)


    Hope this helps.
  13. Thread: Jokes...

    by Ishamel
    Replies
    88
    Views
    4,148

    *************** Urgent News Bullettin...

    *************** Urgent News Bullettin ********************
    A small two-seater Cessna 152 plane crashed into a cemetery early this
    morning in central Ireland. Local search and rescue workers have...
  14. Thread: Jokes...

    by Ishamel
    Replies
    88
    Views
    4,148

    Keep Life in Perspective At age 04 .......

    Keep Life in Perspective

    At age 04 .... success is .... not peeing in your pants.
    At age 12 .... success is .... having friends.
    At age 17 .... success is .... having a drivers license.
    At...
  15. Thread: Hard one !

    by Ishamel
    Replies
    9
    Views
    732

    I've got both hands in my pockets!! :)

    I've got both hands in my pockets!! :)
  16. Thread: Hard one !

    by Ishamel
    Replies
    9
    Views
    732

    I'm not the most clued up person when it comes to...

    I'm not the most clued up person when it comes to working with Excel, but you might want to try this and see if it works.



    Private Sub CommandButton1_Click()
    Dim Rng As Range, i As Integer...
  17. Thread: Hard one !

    by Ishamel
    Replies
    9
    Views
    732

    Have you tried removing the vbCrlf from your code?

    Have you tried removing the vbCrlf from your code?
  18. Replies
    2
    Views
    542

    You could try using the DoEvents Function. ...

    You could try using the DoEvents Function.

    This is from the Help File.

    DoEvents is most useful for simple things like allowing a user to cancel a process after it has started, for example a...
  19. Thread: '&' in Caption

    by Ishamel
    Replies
    4
    Views
    818

    I wrote this piece of code to check a string for...

    I wrote this piece of code to check a string for any ampersand characters before displaying the string in a label caption.



    Public Function CheckString(strString As String, bytSeperatorPosition...
  20. Replies
    5
    Views
    493

    This might help. Private Function...

    This might help.



    Private Function GetText(strText As String, strFirstTextToSearchFor As String, strSecondTextToSearchFor As String)
    Dim bytLengthOfFirstTextToSearchFor As Byte
    Dim...
  21. Replies
    3
    Views
    624

    You can use the Key Down event. Private...

    You can use the Key Down event.



    Private Sub List1_KeyDown(KeyCode As Integer, Shift As Integer)
    If KeyCode = vbKeyDelete Then
    MsgBox "Delete Key has been pressed"
    End If...
  22. Replies
    12
    Views
    718

    This will give you the user name too. ...

    This will give you the user name too.



    MsgBox Environ("USERNAME")
  23. Replies
    12
    Views
    718

    Is this what you are after?? MsgBox...

    Is this what you are after??



    MsgBox Environ("COMPUTERNAME")
  24. Replies
    1
    Views
    849

    Hi there, Does anyone know how to multi-select...

    Hi there,

    Does anyone know how to multi-select nodes on a Treeview control? (Like the Data View window that ships in Visual Studio.)

    Ideally, I do not want to use node check boxes.

    I've...
  25. Thread: HAPPY HOLIDAYS

    by Ishamel
    Replies
    34
    Views
    982

    Hope you all have a good one!!!

    Hope you all have a good one!!!
  26. Thread: SQL help

    by Ishamel
    Replies
    2
    Views
    502

    Try this. Data1.RecordSource = "Select...

    Try this.



    Data1.RecordSource = "Select Quantityordered,Purchaseorderno from customerpricelist where left(purchaseorderno," & i & ")='" & Text1.Text & "'"


    ...or this...
  27. Replies
    2
    Views
    462

    How about placing a combo box at the top of your...

    How about placing a combo box at the top of your form and populating it with the 37 users?

    Then when a user is selected from the combo box, you can populate the fields on the form accordingly.
    ...
  28. This code will move all of the mail items from...

    This code will move all of the mail items from the Inbox to the Personal Mail box where the Sender Name is 'Bob'



    Set myInbox = myOlApp.GetDefaultFolder(olFolderInbox)
    Set myItems =...
  29. Replies
    2
    Views
    546

    This piece code will remove the first item in the...

    This piece code will remove the first item in the users Inbox.



    Set myOLApp = CreateObject("Outlook.Application")
    Set myNameSpace = myOLApp.GetNamespace("MAPI")
    Set myInboxFolder =...
  30. Replies
    3
    Views
    1,156

    These constants will allow you to read items from...

    These constants will allow you to read items from the standard Outlook folders.

    olFolderDeletedItems
    olFolderOutbox
    olFolderSentMail
    olFolderInbox
    olFolderCalendar
    olFolderContacts...
  31. Thread: Tree View

    by Ishamel
    Replies
    2
    Views
    439

    If you know the index of the particular node, you...

    If you know the index of the particular node, you could use this to select the node.



    Treeview1.Nodes(indexvalue).Selected = True


    Alternatively, if you have referenced the node, you could...
  32. Replies
    0
    Views
    471

    Hi there, Does anyone know how I should go...

    Hi there,

    Does anyone know how I should go about embedding files into the RichTextBox control.

    When you drag a number of files from Explorer into a RichTextBox, they are automatically inserted...
  33. Replies
    3
    Views
    685

    I recently tried something similar. I used the...

    I recently tried something similar. I used the following
    code and although the third party application button
    appeared to be pressed, the click event was not being fired
    off. Maybe the code...
  34. Replies
    5
    Views
    626

    Serge, You seem to be pretty clued up on...

    Serge,

    You seem to be pretty clued up on accessing external applications.

    Do you have any idea why myself and Nitro are having this problem??
    ...
  35. Replies
    60
    Views
    3,181

    Dunfermline, but I work in Edinburgh.

    Dunfermline, but I work in Edinburgh.
  36. Replies
    60
    Views
    3,181

    I'm a Scot. Last nights match was very...

    I'm a Scot.

    Last nights match was very enjoyable.

    :)

    (At least you never got stuffed 5-0 like we did!!!!)
  37. Replies
    2
    Views
    751

    The first If statement is checking for arg = "1"....

    The first If statement is checking for arg = "1". If arg is not "1" then your code is jumping to the last End If statement. (There is no Else clause in your code, so your program has no...
  38. I think this is what you are after. Dim...

    I think this is what you are after.



    Dim objPrinter As Printer

    For Each objPrinter In Printers
    List1.AddItem objPrinter.DeviceName
    Next
  39. Replies
    6
    Views
    862

    Nitro - did you ever find out why clicking the OK...

    Nitro - did you ever find out why clicking the OK button did not fire the close event on the external applications message box???

    I am also trying to click an external applications button and...
  40. Replies
    2
    Views
    492

    I think this is what you are after. ...

    I think this is what you are after.



    lblAnything.Visible = Not lblAnything.Visible
Results 1 to 40 of 126
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width