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 wOOdy-Soft 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: clientuser
  • Content: Threads
  • Order by date
  1. clientuser

    send email body section text getting cut off

    I have an email form setup that sends email (smtp). Whenever I send a new email, I check the variables to ensure all the data is there and then send it. However, when the email comes in the first half of the body of text is cut off. So say for example I send this...
  2. clientuser

    handling code in textfield (validate)

    I have a text field where a user puts in a numeric figure and after they tab out of it, the text field will run some calculation code that I setup. However, If a user goes back and clears the field and then tabs out of it, the code will still run. How can I set it up so that if a user clears...
  3. clientuser

    go to page based on option checked

    i have two radio buttons and a submit button on a form. i want it so that when the user selects one of the radio buttons and pushes the submit button, it will take them to the page based on the radio button selected. the javascript code i came up with is: function checkradio(){ if...
  4. clientuser

    updating access db

    I have this code: If rs.EOF Then 'The email address does not already exist, so add it rs.AddNew() rs("FirstName") = Request.Form("txtFirstName") rs("LastName") = Request.Form("txtLastName") rs("Email") = Request.Form("txtEmail") rs.Update() And have 3 fields on a form named as...
  5. clientuser

    run vb app from cd

    i have a vb app that i would like for users to run just from a cd. what are the pros/cons of doing that? also, will they have the problems running the app if the DLLs etc for runtime arent on their systems? also, how do you setup the app to automatically run when the cd is put in? i dont want...
  6. clientuser

    runtime error 2147024769

    I recently went back in to work on an application that uses an access db for a backend and when I went to run the app, it got error: Runtime error -2147024769 automation error, the specified procedure could not be found. and its on: Set oconn = New ADODB.Connection I dont recall making any...
  7. clientuser

    flexgrid remove item after database delete

    how do you delete an item from a flexgrid after you have deleted it from a database? i tried the refresh on the flexgrid but no good.
  8. clientuser

    create new text file every time

    I know how to create a text file and how to append to it and read from it, but how do i create a new text file for each record i save? There is a form in my project that allows users to save information and it also saves a text file out to the apps location. however, it only saves one text...
  9. clientuser

    clearing combobox without clearing contents

    how do you clear a combobox after saving an entry but not delete the contents of the box? i just want to reset it after a user saves an entry.
  10. clientuser

    edit/add table/field names in access

    i have been messing around with making changes to an access db and came across this line: object.DoCmd.OpenTable(USEROPT,acViewDesign,acAdd) i have dimmed my object as well as set it and it works great, but i do not understand the line above. what i have is: - a vb app that uses an access...
  11. clientuser

    changing table fields once data is entered into db

    i have a vb application that will be distributed with an access backend. if i make updates to the access database say later on and add fields or change field names etc and the user has already entered data into their db, how can this best be handled?
  12. clientuser

    setting up a scheduled task in windows

    can anyone give me an example of how to setup a scheduled task in windows? i want to be able to setup task outside of my application in the windows scheduler. also, im assuming the code would work in xp, 2000, 98? or is the scheduler different in the OS's? if it doesnt work, what suggestions...
  13. clientuser

    sql line format

    I keep getting this line is setup wrong: strSQL = "INSERT INTO maillist_members " & "(FirstName, LastName, Email, listID) VALUES " & "('" strFirstName & "', '" & strLastName & "', '" & strEmail & "', " & "' & intListID & "')" & ";" getting: Microsoft VBScript compilation error '800a0401'...
  14. clientuser

    sharing sound with other users

    can someone direct me to what control or code to use when i want to share my sound in a chat with the people in that chat room?
  15. clientuser

    give status of winsock connection

    i have a chat program being worked on and want to know how can i tell if the server piece of the chat is online and running? this also meaning if the server app is online on one machine and the client piece on another.. the server will have a dedicated ip if that helps....
  16. clientuser

    grouping in reports

    i have records that may have a few no#s associated to each record.. i.e. i have a call record that may have however many change request no#s associated to it.. so if i have a call # 123456 and then 3 change request, how can i count the no# of calls on a report without including the change...
  17. clientuser

    report hiding fields

    I have a report that has 3 fields that hold number data and these fields are in the detail section of a report.. Its been a while since I messed with Access so I need to know how fields can be hidden if they pull back a certain value.. In this case, if the value is 0 then I would like to hide...
  18. clientuser

    date diff for long date/times

    what is the suggested function to calculate the difference in time for the following format: 3/1/2004 8:11:25 AM
  19. clientuser

    passing variable from page to page

    how do you pass a string variable from one .asp page to another? any examples would be greatly appreciated
  20. clientuser

    saving to access db

    I have this page that I am trying to save data to an access db, but each time I click submit it just blinks for a sec like its doing something and then stops.. it also happens when I dont put anything in the fields and I have a script to check the fields, but even thats not working: <%...

Part and Inventory Search

Back
Top