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 bkrike 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 lennynuts

  1. lennynuts

    Validating bound grid

    I have a dbgrid updating a database. Where should I validate that what is typed in the grid is sensible, a date in a date field etc TIA Lenny
  2. lennynuts

    tdbgrid with ado - formatting columns

    I just put fname in to signify a field name, it is actually a currency field I'm formatting
  3. lennynuts

    tdbgrid with ado - formatting columns

    Yes, I solved it wth this with adotable1 do begin TFloatField(FieldByName('fname')).DisplayFormat:='######.00'; end; Thanks for pointing me in the right direction,
  4. lennynuts

    tdbgrid with ado - formatting columns

    I am connecting to an access database at runtime, not design time so I cant use the ide to set column parameters. This works ok, but there is no formatting on the numeric fields. How can I set it in code, TIA, Lenny
  5. lennynuts

    Outlook webmail

    I can send mail via Outlook on a pc with Outlook installed frm VB 2005. Is it possible to do it using The webmail version of Outlook ? Cheers, Lenny
  6. lennynuts

    Global module

    Im actually trying to add a module to a project. In vb6 you could add an existing module to a number of projects and they all used the same copy of the module. Thats what Im trying to do, but vb.Net seems to create a new copy of the module for each project.
  7. lennynuts

    Global module

    I am trying to have a global module I can use in several projects. I have created it but when I add it to a project as a new item it creates a completely new copy of the module instead of using the existing one. Have I missed something ? Thanks, Len
  8. lennynuts

    scope

    Ah, now I understand. Thank you very much, Len
  9. lennynuts

    scope

    Just learning Delphi, I have a button and a text box on a form, in the button click procedure this works ok, edit1.Text := '123456'; but i want to put it in a procedure to call from other places, but procedure tempit(); begin Form1.edit1.Text := '123456'; end; in the same unit doesn't work. Why...

Part and Inventory Search

Back
Top