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!

Recent content by trimakassi

  1. trimakassi

    problem with time format

    I use CStr(Now.ToShortTimeString()) thanks for your reply
  2. trimakassi

    problem with time format

    hi all, I have a database with a field configured to accept date/time. I am more interested in the time part of the entry. the problem that i am facing is that I always get 12:00AM can't figure it out!!
  3. trimakassi

    ROWFILTER QUESTION

    dataview
  4. trimakassi

    ROWFILTER QUESTION

    no nothing it says that it can nor find column [x]
  5. trimakassi

    decimal value doesn't get stored in MS access when passed from vb.net

    thanks abdulla I actually changed the datatype in msaccess field to decimal with estimate 2 and converted the textfield to decimal before updating my dataset and it worked fine. thank u though have a nice one
  6. trimakassi

    ROWFILTER QUESTION

    I created a subroutine to filter a dataview and i want to pass the colum to be filtered through a declared string variable ex. lets say I want to filter the date column x="date" then i call the routine and send x in the routine i have a dataview.rowfilter that looks like this Private Sub...
  7. trimakassi

    decimal value doesn't get stored in MS access when passed from vb.net

    i am trying to store a numeric value in a textbox in a msaccess field. the field is numeric simple real type code: Dim dr As System.Data.DataRow = Ds1.Table(0).NewRow dr("number") = cdbl(txtnum.text) Ds1.Tables(0).Rows.Add(dr) OleDbDataAdapter1.Update(Ds1)...
  8. trimakassi

    database connection problems

    thanks alot chrissie
  9. trimakassi

    database connection problems

    i am new to programing, how can I use shared thigies or singleton classes trimakasssi
  10. trimakassi

    database connection problems

    my application was working perfectly well before i tried to refine it. I have an mdi form and 3 other forms. Before the problem, for every form i had a new connection to my database with the required adapters. To make my application more effecient I thought of making one connection and connect...
  11. trimakassi

    access database updating problems with GOTFOCUS field

    thanks that worked, But i have another question is there anyother way to make a lostfocus run once or pause. thankss Jebenson
  12. trimakassi

    access database updating problems with GOTFOCUS field

    Hi everyone, I am new to programming and would need some help, I have an access database connected to my vb.net program. The user in my program inputs the txtdate, txtAmount, cboCategory,cboStore,txtReceipt, and txtMemo. example of ideal case: date.txt 06/12/05 Amount.txt 300$...
  13. trimakassi

    updating a dataset to msaccess

    GHOST807 you got it on the spot, I just figured it out. it was indeed the []. thanks guys Trimakassi Boston
  14. trimakassi

    updating a dataset to msaccess

    this is my new sql code that i tested and worked in a test example dealing with one table, one column, and one textbox. Now that I have adapted it to my program it gives me an syntax error in insert into statement!! Try OleDbConnection1.Open() Dim command As String...
  15. trimakassi

    updating a dataset to msaccess

    Hey bob, I am sorry this might seem stupid but is the Datarowstate(lrow) an integrated function or what cause when I try to insert it it not recognized I tried actually using SQL code but without success.

Part and Inventory Search

Back
Top