Professional Text Editor With Vb
- W-O-GG-O-D
-
W-O-GG-O-D
- Member since: Dec. 28, 2002
- Offline.
-
- Forum Stats
- Member
- Level 11
- Blank Slate
does anyone know any sites that have a tutorial on how to make a really good and complicated text editor? sort of like notepad.
dont tell me to google it coz i have.
- W-O-GG-O-D
-
W-O-GG-O-D
- Member since: Dec. 28, 2002
- Offline.
-
- Forum Stats
- Member
- Level 11
- Blank Slate
eh, im just looking for a smiple one like notepad
- aSSbAG
-
aSSbAG
- Member since: Jun. 29, 2004
- Offline.
-
- Forum Stats
- Member
- Level 02
- Blank Slate
At 10/13/04 07:18 AM, W_O_GG_O_D wrote: eh, im just looking for a smiple one like notepad
I could do that in like 5 minutes...
Why not just use notepad?
- DroopyA
-
DroopyA
- Member since: Dec. 10, 2002
- Offline.
-
- Forum Stats
- Member
- Level 19
- Blank Slate
At 10/13/04 07:18 AM, W_O_GG_O_D wrote: eh, im just looking for a smiple one like notepad
What? Easy.
1. Create a new project
2. Draw a text box that fills up the entire form
3. Set the "MultiLine" property of the TextBox to "True"
4. Compile
Request deletion
This went wrong.
- W-O-GG-O-D
-
W-O-GG-O-D
- Member since: Dec. 28, 2002
- Offline.
-
- Forum Stats
- Member
- Level 11
- Blank Slate
how do i make a save option??
- CronoMan
-
CronoMan
- Member since: Jul. 19, 2004
- Offline.
-
- Forum Stats
- Member
- Level 06
- Blank Slate
At 10/14/04 02:58 AM, W_O_GG_O_D wrote: how do i make a save option??
If you use the Rich Textbox, you can use the Save function.
If not :
public sub savefile(filename as string, text as string)
dim ff as integer
ff = freefile
open filename for ouput as #1
print #1, text
close #1
end sub
for example.
Why not use Textpad?
"no sound in ass"
- Cinjection
-
Cinjection
- Member since: Apr. 6, 2004
- Offline.
-
- Forum Stats
- Member
- Level 18
- Blank Slate
i made a text editor in vb a couple of month ago. its easy as hell to make. it had save, load and a bunch of other stuff. it was kinnda awsome.
- Code2Crash
-
Code2Crash
- Member since: Aug. 7, 2004
- Offline.
-
- Forum Stats
- Member
- Level 05
- Blank Slate
i made a whole notepad before with different types of encryptions you could save as and open, it was cool, but then i lost all my source, just go on www.pscode.com and look for notepad and a ton of source codes will come up


