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 5 IDE

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Wish List
View previous topic :: View next topic  
Author Message
Dr. Dread
Professional Member
Professional Member


Joined: 03 Aug 2001
Posts: 1065
Location: Copenhagen, Denmark

PostPosted: Fri Jun 20, 2003 9:16 am    Post subject: VDS 5 IDE Reply with quote

A couple of things I'd like to see:

* An option to lock the toolbars (so you cannot grab and move them by mistake)

* Option to put custom buttons on the toolbars, e.g. small helper utils

* A help file that is not ONTOP

* An alternative paste mode which pastes with any formatting removed


Greetz
Dread

_________________
~~ Alcohol and calculus don't mix... Don't drink and derive! ~~

String.DLL * advanced string processing


Last edited by Dr. Dread on Fri Jun 20, 2003 10:29 am; edited 1 time in total
Back to top
View user's profile Send private message
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Fri Jun 20, 2003 9:35 am    Post subject: Reply with quote

Dr. Dread, the problem with that paste mode is because a TSyntaxMemo is used. I don't think that can be solved... Sad And I'd like that option to lock the toolbars too... Smile
_________________
[ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial!
Back to top
View user's profile Send private message
Dr. Dread
Professional Member
Professional Member


Joined: 03 Aug 2001
Posts: 1065
Location: Copenhagen, Denmark

PostPosted: Fri Jun 20, 2003 10:28 am    Post subject: Reply with quote

Skit3000 wrote:
Dr. Dread, the problem with that paste mode is because a TSyntaxMemo is used. I don't think that can be solved... Sad


Hmmm, too bad. Good thing we can do a little coding ourselves.. Cool

Code:
  title VDS Paster    ..by Dr. Dread
  option DECIMALSEP,"."
 
  %W = @winactive(I)

  list create,1
  list paste,1
  wait .1
  list create,2
  repeat
    %%line = @next(1)
    list add,2,@strdel(@trim(@strins(%%line,1,¤)),1)
  until @equal(@index(1),@count(1))
  list copy,2
  wait .1
  window SEND,%W,@CTRL(V)
  list close,1
  list close,2

:CLOSE
  stop


If anyone else should find this handy:
Compile it with a descriptive name and put it in your VDS Tools directory. Then use this tool from the VDS tools menu
whenever you want to paste stuff with no formatting included (you have to copy some input text to the clipboard
first, of course).

Greetz
Dread

_________________
~~ Alcohol and calculus don't mix... Don't drink and derive! ~~

String.DLL * advanced string processing
Back to top
View user's profile Send private message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Fri Jun 20, 2003 9:12 pm    Post subject: Reply with quote

You could probably also use DDE to do this, with VDS 5's DDE Server. Very Happy
_________________
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: Sat Jun 21, 2003 12:21 am    Post subject: Reply with quote

the help file is so good now being colour coded and everything...really makes it easier to use

BUT being always on top is sssooo annoying...any way around that?

Serge

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


Joined: 04 Oct 2001
Posts: 2149
Location: A House

PostPosted: Sat Jun 21, 2003 2:39 am    Post subject: Reply with quote

Yes, put a shortcut to the help file on your desktop, quick launch or
other form of program launching. It's what I did when I noticed the
ontop setting of the help file.

-Garrett

_________________
'What you do not want done to yourself, do not do to others.' - Confucius (550 b.c. to 479 b.c.)
Back to top
View user's profile Send private message
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Sat Jun 21, 2003 8:53 am    Post subject: Reply with quote

thanks garrett...your idea works great Very Happy

Serge

_________________
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Dr. Dread
Professional Member
Professional Member


Joined: 03 Aug 2001
Posts: 1065
Location: Copenhagen, Denmark

PostPosted: Sat Jun 21, 2003 2:41 pm    Post subject: Reply with quote

Unfortunately it won't help ya much if you're inclined to using Ctrl-F1 to go specific pages in the help file. You
get another instance of the help file being ontop Crying or Very sad .

Greetz
Dread

_________________
~~ Alcohol and calculus don't mix... Don't drink and derive! ~~

String.DLL * advanced string processing
Back to top
View user's profile Send private message
Garrett
Moderator Team


Joined: 04 Oct 2001
Posts: 2149
Location: A House

PostPosted: Sat Jun 21, 2003 6:35 pm    Post subject: Reply with quote

Well, I haven't tried the following, but here's an idea. Change the name
of the help file, place a shortcut of it in the same directory and then
rename the shortcut to the original name of the help file. I'll give it a try
in a bit and see if that works.

-Garrett

_________________
'What you do not want done to yourself, do not do to others.' - Confucius (550 b.c. to 479 b.c.)
Back to top
View user's profile Send private message
Garrett
Moderator Team


Joined: 04 Oct 2001
Posts: 2149
Location: A House

PostPosted: Sat Jun 21, 2003 6:51 pm    Post subject: Reply with quote

Nope, didn't work.

-Garrett

_________________
'What you do not want done to yourself, do not do to others.' - Confucius (550 b.c. to 479 b.c.)
Back to top
View user's profile Send private message
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Sat Jun 21, 2003 9:42 pm    Post subject: Reply with quote

I'd also like to see a Ctrl+A function in VDS 5. In the older versions I've added these myself with the help of a little tool, but it doesn't work with VDS 5... Sad
_________________
[ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial!
Back to top
View user's profile Send private message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Sat Jun 21, 2003 10:56 pm    Post subject: Reply with quote

I'd like to see this too... but here's a really quick workaround:

Code:
DIALOG CREATE,New Dialog,-1,0,240,160
DIALOG ADD,EDIT,EDIT1,30,32,180,19,EDIT1
  DIALOG ADD,BUTTON,BUTTON1,65,70,64,24,BUTTON1
  DIALOG ADD,edit,TEXT1,-20,-20
DIALOG SHOW
hotkey add,1,CTRL+A

:button1button
:evloop
wait event
goto @event()

:hotkey
dialog focus,text1
dialog focus,edit1
goto evloop

:close
hotkey remove,1
exit

_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Sun Jun 22, 2003 12:09 pm    Post subject: Reply with quote

Oops... Embarassed I ment the "Select All" hotkey in VDS itself... For program I know already how to do that. I used to do that with the menu element... Wink But thanks for mentioning the hotkey function... Wink
_________________
[ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial!
Back to top
View user's profile Send private message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Sun Jun 22, 2003 12:17 pm    Post subject: Reply with quote

Ohhhh, yes, I misunderstood. This is something I've been wanting in the
IDE myself for a long time now... Smile

_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Wish List 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