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 


VDS GUI Extension DLL
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9
 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Other Product Support/Announcements
View previous topic :: View next topic  
Author Message
LiquidCode
Moderator Team


Joined: 05 Dec 2000
Posts: 1753
Location: Space and Time

PostPosted: Fri Feb 11, 2005 5:21 am    Post subject: Reply with quote

Can I use another exe's icon as the icon for the task. I really need this. I tried just using the path to the exe and then added ;1 to the end to see if it needed to select the 1st icon. Can you (codescript) or someone help?

Thanks

_________________
Chris
Http://theblindhouse.com
Back to top
View user's profile Send private message Send e-mail Visit poster's website
CodeScript
Moderator Team


Joined: 08 Jun 2003
Posts: 1060
Location: India

PostPosted: Fri Feb 11, 2005 12:26 pm    Post subject: Reply with quote

LiquidCode, I just added that option in a update just now.
But one thing to note is the limited 4 bit resloution support on older windows versions for the taskicon due to which a 24 bit icon may not look as intended.

_________________
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
marty
Professional Member
Professional Member


Joined: 10 May 2001
Posts: 789

PostPosted: Fri Feb 11, 2005 1:34 pm    Post subject: Reply with quote

New update CodeScript?

Where? Where?

Smile
Back to top
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
LiquidCode
Moderator Team


Joined: 05 Dec 2000
Posts: 1753
Location: Space and Time

PostPosted: Fri Feb 11, 2005 2:00 pm    Post subject: Reply with quote

Very cool! Thank you very much! I just downloaded from the link in your sig, is that the right one? I will not be able to check it till later today.
_________________
Chris
Http://theblindhouse.com
Back to top
View user's profile Send private message Send e-mail Visit poster's website
LiquidCode
Moderator Team


Joined: 05 Dec 2000
Posts: 1753
Location: Space and Time

PostPosted: Sat Feb 12, 2005 6:02 am    Post subject: Reply with quote

I still cannot get an icon from an exe. Any idea why?
_________________
Chris
Http://theblindhouse.com
Back to top
View user's profile Send private message Send e-mail Visit poster's website
CodeScript
Moderator Team


Joined: 08 Jun 2003
Posts: 1060
Location: India

PostPosted: Wed Feb 16, 2005 2:21 am    Post subject: Reply with quote

The same file at vdsworld (my sig links to it) has been updated.
I tried system dlls and I cud us their icons. Didn't try a exe though it shud be no different.
Edit: Works well will exes too.
May be U have older dll version somewhere in the path...

Code:
DIRECTORY CHANGE,C:\Program Files\mysearchtool\bin
  GUI ADD,TASKICON,TASKICON1,#guitestwin,srch_eng.exe--1,VDSGUI.DLL DEMO@CR()Click Taskicon for further info!
  DIRECTORY CHANGE,@path(%0)

_________________
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
CodeScript
Moderator Team


Joined: 08 Jun 2003
Posts: 1060
Location: India

PostPosted: Mon Feb 28, 2005 11:20 am    Post subject: Reply with quote

LiquidCode did that work?
_________________
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
CodeScript
Moderator Team


Joined: 08 Jun 2003
Posts: 1060
Location: India

PostPosted: Mon Feb 28, 2005 11:54 am    Post subject: Reply with quote

I have added the Filedlg customization in the new version. Couldn't upload at the main site. My IE keeps saying it has encountered an eror and needs to close. So I am uploading the new version dll only here.

Code:
  REM VDSGUI can set background and Text color to
  REM your VDS Info and Message and other Dialog boxes.
  REM You can even use a bitmap as back-ground.
  REM In the current example we show
  REM how to customize a filedlg
  REM including the button text to one of your choice.
  DIRECTORY CHANGE,@PATH(%0)
  REM Load the VDSGUI DLL
  EXTERNAL VDSGUI,DEMO
  REM In VDS 5 you need to define the command and
  REM function name of the External DLL.
  IF @GREATER(@SUBSTR(@SYSINFO(DSVER),1,1),4)
  #DEFINE COMMAND,GUI
  #DEFINE FUNCTION,GUI
  END
  REM VDS Dialog Designer created Dialog:
  DIALOG CREATE,Coloured MessageBox with Timeout,-1,0,488,232,NOMIN,COLOR $00DBB7B7
  DIALOG ADD,BUTTON,BUTTON1,83,167,154,66,Launch the Demo,,DEFAULT
  DIALOG SHOW

  :EVLOOP
  WAIT EVENT
  GOTO @EVENT()
 
  :BUTTON1BUTTON
  DIALOG DISABLE,BUTTON1
  REM Customize the filedlg about to popup!
  REM Note the Zip & Abort instead of the usual Open & Cancel.
  REM Keyboard Accelerators are supported. Just Place a "&" before
  REM the letter to be used as hotkey.
  GUI DLGBOXCOLOR,$00004080,$00DBB7B7,SOLID,0,2,Customized Msgbox,&Zip|&Abort
  %A =  @filedlg("Text file (*.txt)|*.txt|Document file (*.doc)|*.doc",Zip a file)
  DIALOG ENABLE,BUTTON1
  GOTO EVLOOP
 
  :CLOSE
  EXIT



vdsgui.zip
 Description:
Filedlg Updated vdsgui dll v 1.86

Download
 Filename:  vdsgui.zip
 Filesize:  41.58 KB
 Downloaded:  2413 Time(s)


_________________
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
marty
Professional Member
Professional Member


Joined: 10 May 2001
Posts: 789

PostPosted: Tue Mar 01, 2005 1:15 pm    Post subject: Reply with quote

Thanks codescript for another very welcomed update
Back to top
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
Boo
Valued Contributor
Valued Contributor


Joined: 31 Oct 2003
Posts: 599
Location: Gulf Breeze, Florida USA

PostPosted: Tue Mar 01, 2005 3:11 pm    Post subject: Reply with quote

Hi Codescript,

Please check your private messages...

Thanks,

- Boo
Back to top
View user's profile Send private message
CodeScript
Moderator Team


Joined: 08 Jun 2003
Posts: 1060
Location: India

PostPosted: Tue Mar 01, 2005 5:51 pm    Post subject: Reply with quote

The dll has been updated at the main site (link in my sig below).
_________________
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
LiquidCode
Moderator Team


Joined: 05 Dec 2000
Posts: 1753
Location: Space and Time

PostPosted: Sat Mar 05, 2005 4:31 pm    Post subject: Reply with quote

Sorry CS. I didn't get a chance to checit it now. My client wanted his app right away and pure VDS allowed icons from an exe to the tray.
_________________
Chris
Http://theblindhouse.com
Back to top
View user's profile Send private message Send e-mail Visit poster's website
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 Previous  1, 2, 3, 4, 5, 6, 7, 8, 9
Page 9 of 9

 
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