| View previous topic :: View next topic |
| Author |
Message |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Fri Jun 20, 2003 9:16 am Post subject: VDS 5 IDE |
|
|
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 |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Fri Jun 20, 2003 10:28 am Post subject: |
|
|
| Skit3000 wrote: | Dr. Dread, the problem with that paste mode is because a TSyntaxMemo is used. I don't think that can be solved... |
Hmmm, too bad. Good thing we can do a little coding ourselves..
| 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 |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Jun 20, 2003 9:12 pm Post subject: |
|
|
You could probably also use DDE to do this, with VDS 5's DDE Server.  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Sat Jun 21, 2003 12:21 am Post subject: |
|
|
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 |
|
 |
Garrett Moderator Team
Joined: 04 Oct 2001 Posts: 2149 Location: A House
|
Posted: Sat Jun 21, 2003 2:39 am Post subject: |
|
|
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 |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Sat Jun 21, 2003 8:53 am Post subject: |
|
|
thanks garrett...your idea works great
Serge _________________
|
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Sat Jun 21, 2003 2:41 pm Post subject: |
|
|
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 .
Greetz
Dread _________________ ~~ Alcohol and calculus don't mix... Don't drink and derive! ~~
String.DLL * advanced string processing |
|
| Back to top |
|
 |
Garrett Moderator Team
Joined: 04 Oct 2001 Posts: 2149 Location: A House
|
Posted: Sat Jun 21, 2003 6:35 pm Post subject: |
|
|
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 |
|
 |
Garrett Moderator Team
Joined: 04 Oct 2001 Posts: 2149 Location: A House
|
Posted: Sat Jun 21, 2003 6:51 pm Post subject: |
|
|
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 |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Sat Jun 21, 2003 10:56 pm Post subject: |
|
|
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 |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Sun Jun 22, 2003 12:17 pm Post subject: |
|
|
Ohhhh, yes, I misunderstood. This is something I've been wanting in the
IDE myself for a long time now...  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
|