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 TouchToneTommy 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 Maximus007

  1. Maximus007

    string

    It's working great! Thank you for sharing.
  2. Maximus007

    string

    I need some help on how to get the last name from a string. Exampl: Doe, John How can I get just the Doe only or what function can I use to accomplish that?
  3. Maximus007

    Paging through records

    It retrives the information but when I click on the next page it says no record found. Can someone look and see if I have left out anything. code: Dim objConn, objRS, strSQL, SQLSelectedStr, SQLSystemStr, SQLReasonStr, SQLMngStr, SQLSupStr Dim SqlStatus, Sqlselected, SqlSystem, SqlReason...
  4. Maximus007

    Space

    To be honest with you I don't know why I stop using it but going foward I will use it more frequently to show my appreciation. Is this how you get rated?
  5. Maximus007

    Space

    Thank you kaht it works like a charm!
  6. Maximus007

    Space

    My mistake! It is space between character, comma, dash and apostrophe
  7. Maximus007

    Space

    I have an input text field name:Username and the Form name: MyForm I would like to alert the user if they enter any username with: spaces,',- or ,
  8. Maximus007

    Datagrid

    Thank you for clearing that up for me.
  9. Maximus007

    Datagrid

    The SqldataAdapter1 SELECT ServerID, ServerName, DateRegistered FROM Servers
  10. Maximus007

    Datagrid

    Here the update code: Private Sub dgServer_UpdateCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles dgServer.UpdateCommand Dim ServerTable As DstServer.ServersDataTable ServerTable = DstServer.Servers Dim...
  11. Maximus007

    Datagrid

    Yes I do! I have an input field that allows the user to add new server. Should perform that task on another page or can I keep everything in one page and change my code arround so it will not affect the updating subrotine? Here's the Add new server code: Private Sub Button1_Click(ByVal sender...
  12. Maximus007

    Datagrid

    First I have a question. Can you have a datagrid that allow paging through the records and allow you edit records? I have tried accomplishing that task but not successful. Here's what happens in my application. After paging the record and selecting a record to edit. Once I click on the update...
  13. Maximus007

    Time

    Hi; I need some help on displaying 30 miuntes counting backwards on a page. I know how to get the time displayed but how to get count back is where I am stuck. Thank you
  14. Maximus007

    radio button

    Thank you! What I was missing is the following: <input type="radio" name="Question1" value="C"<% if Request("Question1")="C" then response.write("checked")%>"> Thank you guys very much!
  15. Maximus007

    radio button

    No it didn't work! <input type="radio" name="Question1" value="<%if Request("Question1")="C" then response.write("check")%>"> it doesn't check the radio button on the receiving page.

Part and Inventory Search

Back
Top