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 


VDSOBJ 3 Released
Goto page 1, 2, 3, 4  Next
 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Other Product Support/Announcements
View previous topic :: View next topic  
Author Message
PGWARE
Web Host


Joined: 29 Dec 2001
Posts: 1562

PostPosted: Sun Oct 26, 2003 7:12 am    Post subject: VDSOBJ 3 Released Reply with quote

New version of VDSOBJ 3 released, DOWNLOAD HERE

This version adds supports for reading resources directly from vds exe's, this is only useful for vds 5 or higher using the #resource add directive to embed files into your exe. This will work for the GRID, GRAPHIC and RICHEDIT objects.

Also fixed several bugs, added new feature to the GRID to clear entire column and new feature to the AVI control to load common window avi's.
Back to top
View user's profile Send private message
CodeScript
Moderator Team


Joined: 08 Jun 2003
Posts: 1060
Location: India

PostPosted: Mon Oct 27, 2003 2:45 am    Post subject: Reply with quote

Excellent Very Happy Thumbs Up
_________________
Regards
- CodeScript
Arrow Give your application a professional look with the VDSGUI Extension
Back to top
View user's profile Send private message Visit poster's website
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Mon Oct 27, 2003 1:08 pm    Post subject: Reply with quote

excellent pgware...am downloading it now and will check it out...yipee!!!

serge

_________________
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Mon Oct 27, 2003 8:44 pm    Post subject: Reply with quote

Nice job Prakash Yes
_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
PGWARE
Web Host


Joined: 29 Dec 2001
Posts: 1562

PostPosted: Wed Oct 29, 2003 2:44 am    Post subject: Reply with quote

3.10.28.2003 - Update DOWNLOAD HERE

This update modifies the GRAPHIC object to reduce (almost completely remove) any flicker effect which may occur when you switch images, this allows you to have 'animations' on your form without noticing the images changing on screen.
Back to top
View user's profile Send private message
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Wed Oct 29, 2003 8:48 am    Post subject: Reply with quote

excellent pgware Very Happy

serge

_________________
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Protected
Valued Contributor
Valued Contributor


Joined: 02 Jan 2001
Posts: 228
Location: Portugal

PostPosted: Wed Oct 29, 2003 9:57 am    Post subject: Reply with quote

Yes, it sounds very good. I may use this dll when I make the new version of Protected Music Player (this wont happen right now - I still have four other things to finish first)
Back to top
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
PGWARE
Web Host


Joined: 29 Dec 2001
Posts: 1562

PostPosted: Thu Oct 30, 2003 3:14 am    Post subject: Reply with quote

New Update - 3.10.29.2003 - DOWNLOAD HERE

This update adds a new function @object(gethandle), this allows you to retrieve the window handle of all dialog objects. This means you can perform @sendmsg api messages on these dialog objects.

An example has been included which shows some great api messages (thanks CodeScript) and another example has been included which shows flicker free image animation (thanks once more CodeScript).

Finally fixed the helpfile as it was missing some topics in the functions section and also added new topics into the helpfile.
Back to top
View user's profile Send private message
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Thu Oct 30, 2003 11:14 am    Post subject: Reply with quote

that is so cool...i was frustrated that i could not use @sendmsg with the controls from vdsobj...great stuff Very Happy Very Happy Very Happy

serge

_________________
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Fri Oct 31, 2003 2:49 am    Post subject: Reply with quote

Thanks Prakash. Very Happy
_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
PGWARE
Web Host


Joined: 29 Dec 2001
Posts: 1562

PostPosted: Fri Oct 31, 2003 2:51 am    Post subject: Reply with quote

Another day another update - 3.10.30.2003 DOWNLOAD HERE

This update adds a new NOREPEAT style to the AVI control, allowing only a single repetition of the avi animation. Also fixed a bug within the AVI control which could have caused a crash if no avi file was specified.

Also updated the example 6 script which converts colornames to colorref values (thanks codescript).
Back to top
View user's profile Send private message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Fri Oct 31, 2003 2:56 am    Post subject: Reply with quote

Once again, Nice work. Smile
_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Thu Nov 13, 2003 12:30 pm    Post subject: Reply with quote

hi prakash,

i can't get @object(gethandle) to work with @sendmsg...what do i use inside the @win()? i tried what the @object(gethandle) returns but no good...i'm after the equivalent of "~edit1" for say a richedit element...can you give me a quick example please?

thanks in advance

serge

_________________
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
PGWARE
Web Host


Joined: 29 Dec 2001
Posts: 1562

PostPosted: Thu Nov 13, 2003 4:38 pm    Post subject: Reply with quote

Hi Serge, try the example 6 that comes with vdsobj. You dont use @win at all, something like this will work>



%A = @sendmsg(@object(gethandle,richedit1),1091,0,2552550)


Same format as VDS api, except you use @object(gethandle,richedit1) to replace the @win(~ ) function.

Make sure you have the latest version of the dll as well since it was added very recently into the vdsobj.
Back to top
View user's profile Send private message
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Thu Nov 13, 2003 9:27 pm    Post subject: Reply with quote

hi prakash,

thanks for that...i did get it working after viewing example 6 (after i posted the message..ggrr!!) but i can't get the MODIFIED api to work with the richedit element...is that normal/predictable? another api call worked but not the one that checks to see if box has been modified

thanks again for your reply

serge

_________________
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Other Product Support/Announcements All times are GMT
Goto page 1, 2, 3, 4  Next
Page 1 of 4

 
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