flat assembler
Message board for the users of flat assembler.

Index > Windows > new editor "Zibu" to replace ur notepad.exe :p

Goto page 1, 2, 3  Next
Author
Thread Post new topic Reply to topic
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 15 Dec 2004, 19:44
i just did this notepad replacement which i called it "zibu"
which in chinese means, something like "notepad" too! :p

zibu is not completed, but all the basic features are UP and user friendly.
you could try to use it and see if it could able to persuade you to remove your notepad.exe from Add/Remove Programs


sincerely,
sulaiman chang


Description: zibu editor 0.0.18 alpha
Download
Filename: zibu.rar
Filesize: 5.18 KB
Downloaded: 544 Time(s)

Post 15 Dec 2004, 19:44
View user's profile Send private message Visit poster's website Reply with quote
JohnFound



Joined: 16 Jun 2003
Posts: 3499
Location: Bulgaria
JohnFound 15 Dec 2004, 20:22
It looks good. Smile One bug report: You can't change the font more than 3..4 times. After several font changes, the editor stops to show the text in the file.

Regards.
Post 15 Dec 2004, 20:22
View user's profile Send private message Visit poster's website ICQ Number Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 16 Dec 2004, 02:34
thanks JohnFound Smile

JohnFound wrote:

You can't change the font more than 3..4 times

care to desribe more about this bug to me, coz i can't recreate the bug using my win95 box. and i try to change the font for about 10 times more already.
Post 16 Dec 2004, 02:34
View user's profile Send private message Visit poster's website Reply with quote
JohnFound



Joined: 16 Jun 2003
Posts: 3499
Location: Bulgaria
JohnFound 16 Dec 2004, 06:35
vbVeryBeginner wrote:
thanks JohnFound Smile

JohnFound wrote:

You can't change the font more than 3..4 times

care to desribe more about this bug to me, coz i can't recreate the bug using my win95 box. and i try to change the font for about 10 times more already.


My OS is Win98. The bug appeared following way: I changed the color of the text several times, then I tryed to choose good font. After 3..4 fonts selected and applied (I can't remember how exactly), the text in the richedit control became white text on white background (but the text was still there). The colors seting in this moment was: white background and black text.

Regards.
Post 16 Dec 2004, 06:35
View user's profile Send private message Visit poster's website ICQ Number Reply with quote
snifit



Joined: 10 Dec 2004
Posts: 12
Location: Sweden
snifit 16 Dec 2004, 08:35
Chosing Terminal, 6 pt didn't work very well.. the size was maybe.. uhm 100 or something Smile
Post 16 Dec 2004, 08:35
View user's profile Send private message Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 16 Dec 2004, 17:31
while, i don't have 6pt with terminal font, it only show 9pt ?
but i found one bug too
try resize the zibu into small window and then click open or save.
Post 16 Dec 2004, 17:31
View user's profile Send private message Visit poster's website Reply with quote
madmatt



Joined: 07 Oct 2003
Posts: 1045
Location: Michigan, USA
madmatt 16 Dec 2004, 18:18
I have windows xp and no matter what point size I choose, it gives my a GIANT font type. Must be at least 2000pts or somethin' Very Happy . How about the source? maybe we can help? Idea
Post 16 Dec 2004, 18:18
View user's profile Send private message Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 17 Dec 2004, 11:37
madmatt wrote:

How about the source?


well, actually, the source is not nice (not yet stable in my opinion) thats why i didn't wanna release it at first. coz i plan to redo it again :p with a different code management approach Smile and to write an edit control

and have some duplicating code too Sad
ok, i post it here

sincerely,
sulaiman chang


Description: zibu editor 0.0.18.0 version (source)
Download
Filename: zibu_source.rar
Filesize: 8.63 KB
Downloaded: 442 Time(s)

Post 17 Dec 2004, 11:37
View user's profile Send private message Visit poster's website Reply with quote
madmatt



Joined: 07 Oct 2003
Posts: 1045
Location: Michigan, USA
madmatt 17 Dec 2004, 21:39
All right, thanks, I'll have a look when I get time. To be honest, I hardly know didly squat about programming windows. Even though I'm doing the translation of the Windows game programming for dummies using DirectX, ain't that strange?! I only know enough to make the window required for the Directx examples to work good. Oh yeh, and I know how to show and hide the mouse cursor ;>}.
Post 17 Dec 2004, 21:39
View user's profile Send private message Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 17 Dec 2004, 23:59
the goto line number has a small bug
it started counting from 0
so, when u goto line 5, it is actually went to line 6
and it is simple to fix it ;p
Post 17 Dec 2004, 23:59
View user's profile Send private message Visit poster's website Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 20 Dec 2004, 12:58
i guess so much problem with font, maybe due to the way i set the size
i just read the decard noteit asm

Code:
    .idm_setfont:
        invoke  ChooseFont, cf
        or      eax,eax
        jz      .finish
        invoke  CreateFontIndirect, font
        or      eax,eax
        jz      .finish
        mov     ebx,eax
        invoke  DeleteObject, [hFont]
        mov     [hFont],ebx
        invoke  SendMessage, [hEdit],WM_SETFONT,ebx,0
        jmp     .finish
    
Post 20 Dec 2004, 12:58
View user's profile Send private message Visit poster's website Reply with quote
sina



Joined: 18 Aug 2003
Posts: 132
Location: istanbul turkey
sina 29 Dec 2004, 00:11
hmm when i open the exe it is in italic font i cant set it to normal?

ps: u look like a muslim regarding your donation Smile
Post 29 Dec 2004, 00:11
View user's profile Send private message ICQ Number Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 29 Dec 2004, 05:38
there are so much problems with my current font implementation. give me a little bit time, hopefully in a few more days, i would post another zibu release Smile with some more features :

yup, i need your donation Smile send it to me, God knows and insyaAllah one day we would meet in the jannah
Post 29 Dec 2004, 05:38
View user's profile Send private message Visit poster's website Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 29 Dec 2004, 16:29
btw,
coding for me is like playing TTD (Transport Tycoon Deluxe), it is not the money that matter (ur line of code or ur code KB), the point is where u place ur rail station, bus station, airport and how you connected your rail station :-p to transfer those goods (how you manage your asm code, your variable name, your indentation).

if you haven't play this game,
http://free-game-downloads.mosw.com/abandonware/pc/strategy_games/games_t/transport_tycoon_deluxe.html

it is by Chris Sawyer Smile
Post 29 Dec 2004, 16:29
View user's profile Send private message Visit poster's website Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 30 Dec 2004, 13:46
version 0.2.32.32 (Dec 30, 2004)
--------------------------------
- fix the gotoline counting from zero
- code a m_message macro to handle windows message
- recode zibu for better code management
- fix the font bug issue (thanks decard,JohnFound and those who tested it)
- add the new drag and drop feature
- replace function now support match case and match whole word
- support zibu.ini file to store and retrieve default font and color
- add keyboard short-cut or accelerator
- enable zibu to load file based on supplied command line argument. (a regedit patch needed)
[HKEY_CLASSES_ROOT\txtfile\shell\Open Zibu]
[HKEY_CLASSES_ROOT\txtfile\shell\Open Zibu\command]
@="H:\\CHANGE_TO_YOUR_ZIBU_LOCATION\\ZIBU.EXE %1"
- the first color in custom color for background and foreground is COLOR_WINDOW
Post 30 Dec 2004, 13:46
View user's profile Send private message Visit poster's website Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 30 Dec 2004, 13:52
seems like this board has problem with file uploading

well, wait and see
coz i wanna see how many download :-p
Post 30 Dec 2004, 13:52
View user's profile Send private message Visit poster's website Reply with quote
iklin



Joined: 20 Mar 2004
Posts: 120
Location: Russia, Siberia
iklin 30 Dec 2004, 17:34
Well, where is your zibu?
Why don't you upload it to your site?
Post 30 Dec 2004, 17:34
View user's profile Send private message ICQ Number Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 30 Dec 2004, 20:43
i wanna see the download counter :-p
well, still cound't upload

Code:
Upload Error: Could not upload Attachment to ./files/zibu_0.2.32.32.rar. 
    
Post 30 Dec 2004, 20:43
View user's profile Send private message Visit poster's website Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 31 Dec 2004, 14:48
version 0.2.33.33 (Dec 31, 2004)
--------------------------------
- new tonggle comment on and off feature,
Ctrl + D to comment, and Ctrl + T to uncomment (for ASM code)
- change the variable derive from a structure to "sWhatsoever"
Post 31 Dec 2004, 14:48
View user's profile Send private message Visit poster's website Reply with quote
vbVeryBeginner



Joined: 15 Aug 2004
Posts: 884
Location: \\world\asia\malaysia
vbVeryBeginner 31 Dec 2004, 15:27
i don't know, does this help?

http://www.phpbb2.de/ftopic19319.html
Post 31 Dec 2004, 15:27
View user's profile Send private message Visit poster's website Reply with quote
Display posts from previous:
Post new topic Reply to topic

Jump to:  
Goto page 1, 2, 3  Next

< Last Thread | Next Thread >
Forum Rules:
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 cannot attach files in this forum
You can download files in this forum


Copyright © 1999-2024, Tomasz Grysztar. Also on GitHub, YouTube.

Website powered by rwasa.