I always did this with just: javascript:window.resizeTo(800,600); This has always worked for me. You don't need the prompts. Thanks, Dean Householder...
I want to search & replace from the start of a line to a character, say a colon. If the line contains, say, '00005 - abcde: fghij', how do I regex the phrase...
Will this do what you are wanting? (.*): that will match everything up to the colon. Wednesday, December 1, 2004, 4:46:30 PM, you wrote: e> I want to search &...
probably better to use ([^:]*): matches any non-colon characters then a colon prefix this with ^ to ensure it starts at the beginning of a line if necessary. ...
... But ([^:]*): will ensure that only those strings followed by a : are matched. Otherwise any text not containing a colon will be included. dZ. -- Bastard...
I am working with EditPlus & my "enter" key is not working as it was 5 minutes ago! It used to add a new line when I would hit it, and now it just takes the...
for info, the INSERT key toggles 'overwrite'/'overtype' mode where the character read from the keyboard replaces the character at the cursor, instead of being...
If all you are trying to match is 5 digits or 5 digits surrounded by predictable characters you could try: [0-9]+ And then put some other delimiters to contain...
I know many of you here are web developers. I was wondering if you could recommend an integrated web development environment with Apache, PHP and MySQL. I know...
I've been using XAMPP very successfully. It is free, and has the option to run Apache and MySql as services. http://www.apachefriends.org/en/xampp.html --John...
... Ravi: I have used Foxserv and have had good luck with it. It can be downloaded from http://www.foxserv.net/. It doesn't have a real recent copy of PHP...
... Excellent - nice to meet you here! I used the old PhpTriad with good results in the past which I think you also developed, so I know this will be good too....
Good day, Since I use the latest editplus version (2.12 since a couple of months), I noticed quite often that editplus is crashing when doing a ftp-read/browse...
Here Is two feature requests I have for Edit Plus 1. Task List Manager for Projects as seen on www.mpsoftware.dk phpdesigner 2. Integration of software that...
Dean, When i do a Help >> About I see. v2.12 (147). So I think I have the correct version. This version has been installed 14-10-04. Before this version I had...
Hi all. I've been using Editplus for ages, but never got into "user tools". Can anyone explain a bit more? What kind of file would I use to "Run as text...
I don't think you can do exactly what you ask, but under Tools|Preferences|Files you can set a directory where all the .bak files are saved. Then they will not...
Rob, There isn't a great description of user tools on the wiki yet [1], so you might want to take a first stab, but there are lots of examples of the types of...