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 SkipVought 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: *

  1. uuthanh

    How to refresh textbox.text?

    Hi Experts, I got 2 textboxes, 1 for old notes (from database), 1 for new notes (entered by user). When user click 'Save Note', new notes will be appended to top of old notes and write into database and then display as old notes. My problem is the resulting notes won't display in the old notes...
  2. uuthanh

    Detect changes prior updating the field

    Thank you for responding, Dimandja! I'm using sqlDataAdapter1, sqlConnection1, DsNotes1. Is there any built-in function or property from dataset or dataadapter to detect this? My problem is very common in the web (disconnected) environment, has Microsoft developed anything from their .NET to do...
  3. uuthanh

    Detect changes prior updating the field

    Hi Experts, How do I detect any changes to the field since last time I view it on the web form before updating it? Here's my problem: I'm developing a trouble ticket system in multi-user enviroment. user 1 is going to update a "notes" field, in that meantime, user 2 already modified it. So...
  4. uuthanh

    Update dataset from TextBox

    Hi Experts, I got these designed from Visual Studio .NET - sqlconnection1 - sqlDataAdapter1 - DsProblemDesc1 my stored proc: Create Procedure ProblemDesc_Sp @ProblemID Integer AS SELECT ProblemID, ProblemDesc FROM ProblemTbl WHERE ProblemID = @ProblemID on my webform1.aspx, I got a textbox...
  5. uuthanh

    how to update field in table when the field is calculated from a form?

    Hi Hasse, Your tip really helped me. My problem was resolved. Thanks so much. Happy new year! UUThanh
  6. uuthanh

    how to update field in table when the field is calculated from a form?

    Hi Hans, Thanks so much... I'm carefully reading your reply in a hope that can solve my problem. Happy New Year! Thanks again. Good luck on your mission! uuthanh
  7. uuthanh

    how to update field in table when the field is calculated from a form?

    Hi Hans, Can you please explain it a bit more detail how to build a query? right now, my functionY is calculated from FormB.X.value, similarly for functionZ. When I view FormB, there are values for field Y,Z. But when I view TableA, fields y,Z are empty. I tried to create a new query, but...
  8. uuthanh

    how to update field in table when the field is calculated from a form?

    Thanks so much for all your replies. I appreciate it. X,Y,Z are defined in table A. Actually, this is our company trouble ticket system. For each ticket, the tech support personnel enters the time X he/she spend on a call. The X value is only entered once. The complex calculation of Y and Z is...
  9. uuthanh

    how to update field in table when the field is calculated from a form?

    Hi Experts! I have a one table and one form: Table A fields: X,Y,Z Form B fields: X,Y,Z (same fields as in table A) In the form B: X value is manually entered, Y and Z are calculated by a function in module based on X value. When I enter X value into the form, it of course automatically...

Part and Inventory Search

Back
Top