Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by smcmanus

  1. smcmanus

    How to I begin to setup IIS with my ISP

    Hi. I just registered a Domain name. They have sent me an IP address. I have XP Pro and installed IIS. Now how do I configure IIS? Where do I put this IP address. My ISP is Rogers High Speed. Am I supposed to call them for anything such as a static IP address. Appreciate your response.
  2. smcmanus

    How do i remove these square blocks in my txt file

    What is happening is if i do not put in the "vbback" it looks like this: 001001, 001002, 001003, 001011, 001012, 001021, 001022 I need it to be all on one line like this: 001001,001002,001003,001011,001012,001021,001022, Thanks
  3. smcmanus

    How do i remove these square blocks in my txt file

    Here is my code: Do While test_cell <> &quot;&quot; Print #filenum, Worksheets(wrksht_in).Cells(x, 1).Value & &quot;,&quot;; vbBack; test_cell = Worksheets(wrksht_in).Cells(x, 2).Value x = x + 2 Loop Result: 001001,001002,001003,001011,001012,001021,001022,
  4. smcmanus

    Removing colon's from a string

    I have a string &quot;00:E0:E4:F2:98:77&quot; and i want to delete the colons. With the code it replaces the string with &quot;00E0E4F29877&quot; which is the back space. How do i get rid of these squares. These numbers are being sent to a text document. Here's how I want it to look...
  5. smcmanus

    BOOTP

    Trying to create a BOOTP application. Any idea how to start this. Are there built in funtions. Appreciate your response
  6. smcmanus

    BOOTP

    Want to create my own BOOTP application. Does anybody know of an activeX or what to use to make this work.
  7. smcmanus

    display message to the user

    I want to display a message to tell the user to wait while the computer connects to the database. Sometimes it can take up to 15 seconds. The user does not have to respond. It is just a message to the user that the program is doing something, and thats why the program is not responding.
  8. smcmanus

    ping IP address

    How do you ping an ip address in code? Thank you
  9. smcmanus

    CODE!!! Help with ADO connection timeout

    Timeout property doed not seem to work for connection timeout. I set it to 1 second but actually it takes about 20 seconds. I am using Reference Active X Data Objects 2.6. Dim cnn As New ADODB.Connection Dim cnstring As String cnstring = &quot;Provider = SQLOLEDB;&quot; & _...
  10. smcmanus

    HELP WITH ADO CONNECTION TIMEOUT !!!

    i SET MY CONNECTION TIMEOUT FROM A DEFULT VALUE OF 15 TO 1 SECOND, BUT WHEN THE CONNECTION IS MISSING TIMEOUT ACTUALLY TAKES ABOT 20 SECONDS, NOT 1 SECOND THAT IT WAS SET TO. Public Sub Write_to_server() Dim cnnConnection As New ADODB.Connection Dim cmdCommand As New ADODB.Command...
  11. smcmanus

    retrieve record number from clicking on data grid

    Jitter... This works fine, but when you scroll down the DataGrid, the rows number will always reset to the number your on in the DataGrid, therefore never getting a true position in the recordset. Thanks
  12. smcmanus

    retrieve record number from clicking on data grid

    I have a data grid and when I click on a row, I want to know which record number it is in the recordset object.
  13. smcmanus

    really need help with drag and drop!!

    Have a data grid and I want to select a row and drag(copy) it to a list box or another data grid. Any help at all would be appreciated. Thanks Sara
  14. smcmanus

    Drag &amp; Drop from from flex grid

    Is there any way to drag records from a flex grid to another flex grid or a data list. Appreciate your response. Thanks sara
  15. smcmanus

    Please Help? Drag and Drop

    Want to drag rows in a flex grid to a text box. Can this be done. How do I approach it. Thanks Sara

Part and Inventory Search

Back
Top