[bisnis-retail] dataentryformfillingworks

2007-02-06 Thread reema send
http://fgfgf.notlong.com




dataentryformfillingworks




http://fgfgf.notlong.com

-
 Here’s a new way to find what you're looking for - Yahoo! Answers 

[Non-text portions of this message have been removed]



posting: [EMAIL PROTECTED]

subscribe  : [EMAIL PROTECTED]

unsubscribe: [EMAIL PROTECTED]

Web: http://www.bisnis-pulsa.com/?id=warungpulsa

 Tingkatkan kewirausahaan, sukses  sejahtera  
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/bisnis-retail/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/bisnis-retail/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


Re: [Axapta-Knowledge-Village] How to read data from weighing instrument?SOS!!!

2007-02-06 Thread Varden Morris
You can use the MSCOM activeX control to read data from the COM port of the 
computer where the scale is connected. If you are using Citrix or Terminal 
Server to launch the AX client you can configure them to map the client 
computer port, instead of the Citrix or Terminal Server,  to the AX client. 

Regards,
 
Varden Morris 

85 Saddleland Close N.E. 
Calgary, Alberta T3J 5J5 
Canada 

(403) 366-8434 (H) 
(403) 615-1604 (C)
[EMAIL PROTECTED]
 
 



- Original Message 
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
To: Axapta-Knowledge-Village Axapta-Knowledge-Village@yahoogroups.com
Sent: Monday, February 5, 2007 5:58:00 PM
Subject: [Axapta-Knowledge-Village] How to read data from weighing 
instrument?SOS!!!

Dear all

I want to read data from weighting instrumnet to Axapta, do you have any souce 
code or expirement or suggestion?? ?

thanks you very much!!!


 --
qhpeng
2007-02-06





 

Be a PS3 game guru.
Get your game face on with the latest PS3 news and previews at Yahoo! Games.
http://videogames.yahoo.com/platform?platform=120121

[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Locking Field

2007-02-06 Thread Wahyudin Zakie
i've found this solution, amit jain told me. just add code below in datasource 
at active method.
   
ledgerJournalTrans_ds.object(FieldNum(LedgerjournalTrans,AccountNum)).allowedit(ledgerJournalTrans.settlevoucher
  != settlementType::SelectedTransact);
   
ledgerJournalTrans_ds.object(FieldNum(LedgerjournalTrans,AccountType)).allowedit(ledgerJournalTrans.settlevoucher
  != settlementType::SelectedTransact);
   
ledgerJournalTrans_ds.object(FieldNum(LedgerjournalTrans,PostingProfile)).allowedit(ledgerJournalTrans.settlevoucher
  != settlementType::SelectedTransact);
  
  

Joe DeRoche [EMAIL PROTECTED] wrote:  
I believe there is a way to apply a security
  certificate at the field level that might accomplish
  what you are looking for.
  
  --- Wahyudin Zakie [EMAIL PROTECTED] wrote:
  
   Hi all..
 I am a beginer in Axapta and X++.
 I am using axapta 3.0, i want to know the code how
   to lock some field.
 For example when i using function settlement in
   journal, i want to lock  accountnum,accounttype,and
   postingprofile. so user can not change that  field
   after using function settlement. Thank's for your
   help...
 
 Zakie
 




  
  
  

 
-
Cheap Talk? Check out Yahoo! Messenger's low PC-to-Phone call rates.

[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Modifying lookups forms

2007-02-06 Thread Marko Salonen
In 06/02/07, Amit Jain [EMAIL PROTECTED] wrote:
 Cant you do this, on your field ? Why do you want to change properties from
 lookup method?

On the field, where?


Re: [Axapta-Knowledge-Village] how can we achieve to get data from table on report ?

2007-02-06 Thread Varden Morris
Use a programmable section.

Regards,

 
Varden Morris 

85 Saddleland Close N.E. 
Calgary, Alberta T3J 5J5 
Canada 

(403) 366-8434 (H) 
(403) 615-1604 (C)
[EMAIL PROTECTED]
 
 



- Original Message 
From: inan celik [EMAIL PROTECTED]
To: Axapta-Knowledge-Village@yahoogroups.com
Sent: Tuesday, February 6, 2007 10:22:57 AM
Subject: [Axapta-Knowledge-Village] how can we achieve to get data from table 
on report ?

Hi All ,

I have a got a problem that is related with reports .I want to put an area 
about dynamic datas and this area can support an option to select a record 
after that the record should write on the specific area on Report .

For example this area is consist of employees names but i need to select the 
right name then to write on there .

How can i solve this problem ?



 - - ---
Have a burning question? Go to Yahoo! Answers and get answers from real people 
who know.

[Non-text portions of this message have been removed]





 

Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html 

[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Modifying lookups forms

2007-02-06 Thread Anil Ozay
Hi Marko,

You can extend the SysTableLookup class. This class uses container to store
fieldId and returmItem values, to create a lookup grid.

If you look at buildGrid function of this class, you can see :

[fieldId, returnItem, method] = conpeek(lookupItems, i);

This means that : get the i'th item of container and set values to fieldId,
returnItem and method variables.

After that, you can see this lines in the same method :

if (!method)
{
 formBuildControl =
_formBuildGridControl.addDataField(_formBuildDataSource.id(), fieldId);
 .

This is the critical part! You used addLookupField method to insert
fieldId and returnItem values to container. And AX creates a
formBuildControl object belongs to your fieldId. When you look at the
methods of formBuildControl, you can't see the width() method! But you can
solve this problem, too.

If you want to try the solution, let's continue to these steps in
SysTableLookup class :

*1.* Extend addLookupField method, or write a new method :

void addLookupfield(fieldId _fieldId, boolean _returnItem = false,int
_width=0)
{
lookupItems += [[_fieldId, _returnItem,_width]];
}

2.  Extend buildGrid method to use width value :

protected FormBuildGridControl buildGrid(FormBuildGridControl
_formBuildGridControl,
 FormBuildDataSource
_formBuildDataSource)
{
FormBuildControlformBuildControl;
Object  obj;
boolean returnItem;
boolean method;
int fieldId;
int i;
int width;
;


for (i = 1; i = conlen(lookupItems); i++)
{
[fieldId, returnItem,width, method] = conpeek(lookupItems, i);

if (!method)
{
formBuildControl =
_formBuildGridControl.addDataField(_formBuildDataSource.id(), fieldId);
if(width != 0)
{
obj = formBuildControl;
obj.width(width);
}

if (i == 1 || returnItem)
{
controlIdx = formBuildControl.id();
lookupField = fieldId;
}
.

I tested it and it is working pretty.. But it can be necessary another test
scenarios, because we changed the execution of system class.

If you want to test this,you can give width property on third parameter. If
you don't, standart width will be used.

sysTableLookup.addLookupfield(fieldNum(CustTable, AccountNum),true,*150*);
I hope, this method can help you. If you decide to use it, please test
carefoully.


Best regards,
Anil Ozay
MVP Dynamics AX


On 2/6/07, Marko Salonen [EMAIL PROTECTED] wrote:

   In 06/02/07, Amit Jain [EMAIL PROTECTED] amitjain_in%40yahoo.com
 wrote:
  Cant you do this, on your field ? Why do you want to change properties
 from
  lookup method?

 On the field, where?
 



[Non-text portions of this message have been removed]