[Axapta-Knowledge-Village] Confirm deletion message

2007-09-26 Thread bryanevil
Hi all, How can I change the Confirm deletion message for my custom form? For Example, when you try to delete an Sales Order, it pop out a Confirm deletion box said You are about to delete a record in Sales orders. Delete record?, how can I change it? Thank you. Regards, Bryan

[Axapta-Knowledge-Village] how to set focus on a field in a dialog box?

2007-07-09 Thread bryanevil
Hi everyone, How do I set focus on a field in a dialog ? my dialog got 2 fields - dialogPallet and dialogLocation. What i try to do is when I hit OK button and if the dialogLocation textbox is empty, set focus on the dialogLocation text box. my code look like: if(!location){

[Axapta-Knowledge-Village] how to set focus on a field in a dialog box?

2007-07-09 Thread bryanevil
Hi everyone, How do I set focus on a field in a dialog ? my dialog got 2 fields - dialogPallet and dialogLocation. What i try to do is when I hit OK button and if the dialogLocation textbox is empty, set focus on the dialogLocation text box. my code look like: if(!location){

[Axapta-Knowledge-Village] how to read data from a table and a query?

2007-06-30 Thread bryanevil
Hi all, Q1) how can i retrieve individual fields data from a unknown table? code: q.addDataSource(tableid); qq = new queryrun(q); plus because because we dont know the field's datatype, how do i assign it to a variable? Q2) how can i write

[Axapta-Knowledge-Village] how to retrieve individual data from a table and a query?

2007-06-30 Thread bryanevil
Hi all, Thanks in advance for your help. two questions I have tried to solve for a long time, want post it here before i give up. Q1) this is my query: while Select CustTable{ /* At here how can I refer all the fields' values from the row and write into a txt file??