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!

Search results for query: *

  • Users: Maximus007
  • Content: Threads
  • Order by date
  1. 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?
  2. 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...
  3. 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 ,
  4. 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...
  5. 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
  6. Maximus007

    radio button

    Example: The first page is the submission page which has the radio button radio1 radio2 radio3 After clicking the submit but it take the user to review page. Now on the review page. It has radio1 radio2 radio3 My question is how can I get the button that was checked from the submission...
  7. Maximus007

    Validating number and comma

    I have an input field that populates a comma after the third number: code: <input type="text" onkeyup="this.value = (this.value.length == 3) ? this.value + ',' : this.value"> in my validating how can I allow the comma and have check for that number only. code: if (isNaN(dd.value))...
  8. Maximus007

    Error saying:Incorrect syntax near the keyword 'And'

    I have been trying to figure this out for quite some time. Any help is greatly appreciated. error:Incorrect syntax near the keyword 'And' Code: Dim strAddSQL As String strAddSQL = ("Update Servers set ServerName='" & txtServerName.Text & "' And DateRegistered='" & Date.Today &...
  9. Maximus007

    list box

    I have a drop menu that has "All" as one of the options for useres to select. Therefore if the user selects "All" then it displays all the data for the date range. part of the code: strSelect = ("Select * from IT_Servers where DateEntered Between '" & strStart & "' AND '" & strEnd & "'...
  10. Maximus007

    Getting this error:Object required: 'DRIVER={Microsoft Ac'

    I have been trying to figure this out for quit sometime. Does anyone know what this error means and how can I fix it? Microsoft VBScript runtime error '800a01a8' Object required: 'DRIVER={Microsoft Ac' Thank you
  11. Maximus007

    Login failed for user '(null)'. Reason: Not associated with a trusted

    Hi I know it has do with the login to sql server but I am having a hard time figuring out. Any help on how I can fix this problem?
  12. Maximus007

    textarea

    I have a list box that the user is able to select names from. Then they click the add button to move the selected name to a textarea. Here's how the names are appearing Example: Name1Name2Name3 How can I have the next name move to the next line? Here's the code I am using to move them over...
  13. Maximus007

    Submitting data to a datagrid then page through records

    I have a drop down menu that populates data then the user selects a start date and an end date. Then he/she hits the submit button to view the data in the datagrid and they are able to page the records. I am having problem paging through the record. Can I achieve this in one page or would it...
  14. Maximus007

    Error

    Hello; I am getting this erro when trying to view this application. I am using my local machine to build it. The error says: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection Can someone help me on resolving this issue? Thank you
  15. Maximus007

    Asp.net error

    Hi; I am getting this error when I am trying to generate a dataset "Convert is not a member of string". Any ideas on where I went wrong? Thank you
  16. Maximus007

    Active directory

    Hi; I am seeking some help on how to access or retrieve some information in active directory. Any help is greatly appreciated. Thank you
  17. Maximus007

    Question on ASP?

    With classic ASP can I apply form authentication? I understand with .NET that is possible but my application was written in classic ASP. Thank you.
  18. Maximus007

    Window authenitcation through sql database

    Hi I am trying to lock certain individual from submitting information through a form. When they click on the submit button. The database does the windows authentication then let them in if they are part of that account. I made all the modification neccesary for this to work but I am getting...
  19. Maximus007

    Formatting data in a string

    I have a string that holds data and I want to remove the dash. It displays a day 6-22-2005 code: Dim strDisplayDate strDisplayDate= request.form("Date") response.write (Replace(Cstr(strDisplayDate), "-" , "") and nothing happens. It remains the same and the dashes are not remove.
  20. Maximus007

    populating a dash

    Good morning everyone; I interested in having a dash poplulate after the ninth character within an input field. If there's a website with this information please send me the url. Thank you

Part and Inventory Search

Back
Top