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. handoko

    How to Create MASTER/DETAIL in MultiUser?

    No, i don't use transaction. Is that necessary? Thank you Handoko
  2. handoko

    How to Create MASTER/DETAIL in MultiUser?

    Hi, I need some help. Here is the situation. I want to make a multi user entry master/detail windows form. Example: the tabels are "TTrans" and "TTransDtl" TTrans fields are: 1. "IDTrans" = autonumber 2. "Remark" = string TTransDtl fields are: 1. "IDTransDtl" = autonumber 2. "IDTrans" =...
  3. handoko

    Update DataSet from TextBox

    ITflash, you have to use this code first try Me.BindingContext(Myds.table1).EndCurrentEdit() ObjDa.Update(Myds) Catch x As Exception 'Error Message End Try Handoko
  4. handoko

    updating dynamicly built textbox's

    Michelle try this code,(Example:Dataset = "DSCUSTOMER1",tablename="CUSTOMER") Try Me.BindingContext(Dscustomer1.CUSTOMER).EndCurrentEdit() DACUSTOMER.Update(Dscustomer1) Catch x As Exception 'Add error Message End Try Handoko
  5. handoko

    PICTURE IN GRID COLUMS

    Sorry, for using capital as a title it doesn't mean that i shout once again, i'm sorry Best Regards Handoko
  6. handoko

    PICTURE IN GRID COLUMS

    Sorry, for using capital as a title it doesn't mean that i shout once again, i'm sorry Best Regards Handoko
  7. handoko

    PICTURE IN GRID COLUMS

    Hallo everyone, I want to ask something. Is it possible to put picture in a datagrid? Example: Column1 = ProdukID Column2 = ProdukName Column3 = ProdukPicture Thanks a lot. I hope there is a solution for my problem Thanks again Best Regards, Handoko
  8. handoko

    PICTURE IN GRID COLUMS

    Hallo everyone, I want to ask something. Is it possible to put picture in a datagrid? Example: Column1 = ProdukID Column2 = ProdukName Column3 = ProdukPicture Thanks a lot. I hope there is a solution for my problem Thanks again Best Regards, Handoko
  9. handoko

    Grid for DataEntry?

    Peping, Rafael Copquin use cursor for temporary grid. Then do scanning record to filter the valid record put into the real table. I try to do the same thing but without Cursor just using table buffering. My algorithm: 1. CURSORSETPROP('Buffering',5,'Detail') 2. do edit, append, or delete in the...
  10. handoko

    Grid for DataEntry?

    Mike, What is the differences between using TABLEREVERT(),TABLEUPDATE() with BEGIN TRANSACTION,ROOLBACK,END TRANSACTION. Could you give me an example code using TABLEREVERT() and TABLEUPDATE() implement in the grid? Thanks Handoko
  11. handoko

    Grid for DataEntry?

    Thanks Mike Lewis, I've ever try a POS SYSTEM program made with Clipper for DOS. it use a grid directly for data entry. No matter what we put unvalid record, when we ended the Entry proses (by push Save button for example). The grid automaticaly just shows the valid record only. Is there a way...
  12. handoko

    Diskless Network Server2003

    Hi guys, I wonder Is there any program like Citrix MetaframeXP that support Diskless Client for Server2003. I used to server2k + Citrix MetaframeXP to make diskless client. It works fine. I'd try Client with PXE bootrom connect to Server2003 as fileserver. Until shows "C:\". Now, I...
  13. handoko

    Grid for DataEntry?

    Hi again, I need a suggestion. I make a master detail form. For Detail DataEntry I use grid. Which one better? 1. Entry Data to the Grid Directly. I see a lot of problems here. I'd try once. It's dificult in validition. Sometimes I have to left one blank record. 2. Use some textboxes to verify...
  14. handoko

    Store Cheklistbox Value in a field

    Thanks you Darrell. I'll use your code. Thanks Again Handoko
  15. handoko

    Store Cheklistbox Value in a field

    Guys. I found the answer. I make a newcontrolsource property that do not bind the listbox value directy. See yaa
  16. handoko

    Store Cheklistbox Value in a field

    Hi. I want to make a checklistbox class with field in the controlsource represent the checklistbox value. Here is my code, I use listbox. I use a field C(5) with '0' or '1' value. Maximum checklistbox option is 5 equal to length of the field. Example: Value in the field='11001' In Checklistbox...
  17. handoko

    Access value in controlsource

    Thanks Jim. It Works.
  18. handoko

    Access value in controlsource

    Hi Mike. I want to access the value of controlsource from an object. I mean the value of a field that i don't know the fieldname exactly. I'll use for create a class. I'll try use this statement: THISFORM.label1.caption=&thisform.textbox1.controlsource it's doesn't work. Help me please. Thanks
  19. handoko

    Check list box in VFP?

    Hi, Mike Lewis I'd mail my question to you directry. Thanks for your response. I think I found the problem. The width and height of Simplelist must greater than the white rectangle inside the simplelist. But, I have a deadline, so I manipulate a grid look like check list box(Suggestion from...
  20. handoko

    Check list box in VFP?

    There's no line separator property in Mike Lewis Component. I'll try to ask him. thanks anyway

Part and Inventory Search

Back
Top