RE: [development-axapta] Start Menu

2005-02-02 Thread Dimitri JADIN
In the « SHARE » directory int the Axapta directories, ypu put your company logo with the name CompanyLogo.bmp. It's magic ! Dimitri JADIN Analyste programmeur BEA S.A. Liège Science Park Allée des Noisetiers, 12 B-4031 Angleur Tél. : + 32 4 - 361.62.77 Fax : + 32 4 - 361.28.58

Re: [development-axapta] Text on Report

2005-02-02 Thread Sonny Wibawa Adi
Hi Shruti, Please refer to technet.navision.com, discussion 48.4: this is a copied text from technet, by kjrgense, Denmark: One way to print a vertical text in a report It can be done by using the following approach: Make a pageHeader that has height 0.01 mm. (If it has height 0.00

[development-axapta] RE: default 'admin' login

2005-02-02 Thread Matt Benic
Ahem. Blank by default. Nice.. sorry for the stupid question ;) Regards, Matt Benic Axapta Developer UTi Sun Couriers Division The universal aptitude for ineptitude makes any human accomplishment an incredible miracle. - Col. John P. Stapp www.smallfrymobile.com

[development-axapta] Item Barcoding

2005-02-02 Thread mchiat
Hi all, Can anyone tell me the how the item barcoding work in axapta? In the item master setup button Bar Codes there is 2 checkboxes: Scanning and To be printed. Cany anyone tell me how to use that? Thousands thanks in advance. Best Regards, Jack Koh Yahoo! Groups

[development-axapta] default 'admin' login

2005-02-02 Thread Matt Benic
Hi there, I'm trying the suggestion given yesterday, to build our database from a copy of AxClean, and a company export. Just one problem- the only user on clean is, of course, admin. And I have no clue as to what the default password is for admin. Can someone please either tell me what it

RE: [development-axapta] Date Null Value

2005-02-02 Thread Dimitri JADIN
More easy... In code... You can have the date null with the global function : Datenull(); Easy, no ? Dimitri JADIN Analyste programmeur BEA S.A. Liège Science Park Allée des Noisetiers, 12 B-4031 Angleur Tél. : + 32 4 - 361.62.77 Fax : + 32 4 - 361.28.58 [EMAIL PROTECTED]

Re: [development-axapta] Text on Report

2005-02-02 Thread Shruti
Thx for this information but still the alphabets are displayed in a horizontal fashion, i want to tilt the string as a whole. So if u can provide me some more information it will be really Great. Regards:: Shruti Jain Euroinfo Systems Pvt. Ltd. C-126, Sector - 2 Noida - 201301 (U.P.) Phone

Re: [development-axapta] RE: default 'admin' login

2005-02-02 Thread Stefan Osterburg
btw: in case you ever really forget your password but still have access to the tables directly on the SQL server you can empty the Password field for the respective user on the UserInfo table. Matt Benic schrieb: Ahem. Blank by default. Nice.. sorry for the stupid question ;) Regards,

RE: [development-axapta] RE: default 'admin' login

2005-02-02 Thread Matt Benic
Nice to know (and a bit scary), thanks. Regards, Matt Benic Axapta Developer UTi Sun Couriers Division The universal aptitude for ineptitude makes any human accomplishment an incredible miracle. - Col. John P. Stapp www.smallfrymobile.com http://www.smallfrymobile.com -Original

RE: [development-axapta] Server/Client Problem

2005-02-02 Thread Matt Benic
Can you give more details on the problem? Does it fail on opening files, does it incorrectly import data? Could you possibly post some of the code? Regards, Matt Benic Axapta Developer UTi Sun Couriers Division The universal aptitude for ineptitude makes any human accomplishment an

RE: [development-axapta] Re: Refresh data source on Form

2005-02-02 Thread Daniel Redelinghuys
Thanx, a used the research() Daniel J. Redelinghuys Axapta Developer UTi-Sun Couriers Division Tel: +27 12 673 2324 Fax: +27 12 673 2344 -Original Message- From: ozzage [mailto:[EMAIL PROTECTED] Sent: 01 February 2005 11:13 PM To: development-axapta@yahoogroups.com Subject:

[development-axapta] Moving files

2005-02-02 Thread irvr80
Hi All!!! I have a class that reads data from a .CSV file, my job is then to move the file to different locations 1 if the file was read ok, and another if there was any errors... How do I do that plase help :-) Yahoo! Groups Links To visit your group on the web, go

[development-axapta] Date/Time of last login

2005-02-02 Thread Daniel Redelinghuys
Hi all, How will I retrieve the Date/ Time of last login of a user. I query the table.UserGroupList for the GroupId and table.UserInfo for the Id and Name, but also need the Date/ Time of last login for the users? Thanx Daniel J. Redelinghuys Axapta Developer UTi-Sun Couriers Division

RE: [development-axapta] Moving files

2005-02-02 Thread Lars Dag Erichsen
Look in the WinAPI class or search for code that uses that class. /Lars Erichsen From: irvr80 [mailto:[EMAIL PROTECTED] Sent: 2. februar 2005 11:14 To: development-axapta@yahoogroups.com Subject: [development-axapta] Moving files Hi All!!! I have a

[development-axapta] Re: Date/Time of last login

2005-02-02 Thread wohegro
hi, table SysUserLog should give you all information you need... regards WoHeGro Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ To unsubscribe from this group, send an email to:[EMAIL PROTECTED] Your use of

[development-axapta] Re: Server/Client Problem

2005-02-02 Thread anettemalmberg
Hi, It is a lot of code, but I changed a number of methods i the classes to 'static' ang modified the 'main method' like this: client static void main(Args args) It's seems to work now but i still dont know the reason Regards, --- In development-axapta@yahoogroups.com, Matt Benic

RE: [development-axapta] Date/Time of last login

2005-02-02 Thread Matt Benic
SysUserLog is what you want: select firstonly * from SysUserLog order by createdDate desc, createdTime desc where (SysUserLog.UserId == MY_ID) (SysUserLog.Type == SysLogType::login) You can check the createdDate/time for the actual login time. Regards, Matt Benic Axapta Developer UTi

Re: [development-axapta] Date/Time of last login

2005-02-02 Thread wb
Hello Daniel static void ew_lastLogin(Args _args) { SysUserLog userLog; ; select userLog order by logoutDate desc, logoutTime desc where userLog.UserId == curUserId() userLog.TerminatedOk == true; info(strfmt('%1 %2', userLog.createdDate, time2str(userLog.createdTime, 1, 1))); }

AW: [development-axapta] Re: Server/Client Problem

2005-02-02 Thread Leberbauer, Herbert - News
Hi, did you take care of the filepaths you are using? You should use UNC-paths (e.g. \\Axapta-Server\myFolder) Because if you use e.g. c:\myTempFolder as the path in your code, it's a difference if the code is executed on the AOS or if executed on the client. The path may exist on your

RE: [development-axapta] Date/Time of last login

2005-02-02 Thread Daniel Redelinghuys
Thanx to all, SysUserLog was exactly what I needed. Daniel J. Redelinghuys Axapta Developer UTi-Sun Couriers Division Tel: +27 12 673 2324 Fax: +27 12 673 2344 -Original Message- From: Matt Benic [mailto:[EMAIL PROTECTED] Sent: 02 February 2005 12:43 PM To:

[development-axapta] Calling Stored Procedures from axapta

2005-02-02 Thread Jako Boon
Hi, Is it at all possible to call a MSQL Stored procedure with parameters in Axapta through X++ code? If so is there some preferred syntax that I can use. Thanks Jako Boon iSoft Technologies (Pty) Ltd (You can contact iSoft @ +27 12 3454720) -- Internal Virus Database is

RE: [development-axapta] Calling Stored Procedures from axapta

2005-02-02 Thread Karsten Wollesen
Hi Jako, If you use the class, Statement http://dev-wss/Technical/Forms/DispForm.aspx?ID=107RootFolder=%2fTechn ical%2fMicrosoft%20Business%20Solutions%2fTechnical%20Information%20%2d% 20versions%2f2%2e5Source=http%3a%2f%2fdev%2dwss%2fTechnical%2fMicrosoft