forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Ms-Excel 2002 (MS-Excel XP) with VDS 4.51... is it possible?

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help
View previous topic :: View next topic  
Author Message
satanhead
Newbie


Joined: 16 Apr 2003
Posts: 3

PostPosted: Thu Jan 08, 2004 2:38 pm    Post subject: Ms-Excel 2002 (MS-Excel XP) with VDS 4.51... is it possible? Reply with quote

1) How do i print directly (no selecting printer dialog) from vds4.51 to excel?

2) What else can be done if I dont want to use DDE to link VDS and MS-Excel XP?

3) Can anyone create a plugin for working with MS-Office document? Like text-formatting in MS Word, set a slideshow effects just by clicking a button? ----> (i'm Willing to buy this plugin; if anyone ever created it)

4) How do i retreive data from a cell (e.g. R3C24) ? is it possible if i dont want to run the MS-Excel program?
Back to top
View user's profile Send private message
marty
Professional Member
Professional Member


Joined: 10 May 2001
Posts: 789

PostPosted: Thu Jan 08, 2004 3:50 pm    Post subject: Reply with quote

Quote:
set a slideshow effects just by clicking a button?


What do you mean exactly, a plugin to create a slideshow or support PowerPoint effects?

Funny I just saw your post on MMBforums also just now Wink Undecided on which tool to use righ?t?

Thanks...
Back to top
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
SK
Newbie


Joined: 29 Dec 2003
Posts: 14

PostPosted: Sat Jan 10, 2004 2:21 pm    Post subject: Reply with quote

I don't know if this will help, but you can use 'tab delimited text' to create Excell worksheets:

Code:

list create,1
list add,1,John@tab()21@tab()1111111
list add,1,Kris@tab()27@tab()2222222
list savefile,1,C:\friends.xls
list close,1


than you can open it in Excell and add/remove/edit fields manually. Be sure not to format the text (e.c. apply styles Bold/Italic... cell colors), as it will be saved in Excell format - not plain text.
Now how to get data from file:

Code:

option fieldsep,@tab()
list create,1
list loadfile,1,C:\friends.xls
%A = @count(1)
repeat
 %B = @next(1)
 parse "%%Name;%%Age;%%Phone",%B
 info Name: %%Name@cr()Age: %%Age@cr()Phone: %%Phone
 %A = @pred(%A)
until @zero(%A)
list close,1


Hope this will help...

_________________
SK
Back to top
View user's profile Send private message Send e-mail
PGWARE
Web Host


Joined: 29 Dec 2001
Posts: 1565

PostPosted: Sat Jan 10, 2004 5:23 pm    Post subject: Reply with quote

You can use a rtf control, there is a free dsu available here on vdsworld and the vdsobj.dll will allow you to use a richedit control on your window to edit .doc files for text formatting. However this will not produce MS Word document type files rather - rtf dcouments. You may be able to get away with editing 'some' ms word documents using a richedit control.

Other then that I don't think there is any other way to modify MS Word documents then using MDI and MDI is rather limited. You would definately need a COM object but such things aren't currently possible in VDS Sad
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group