Jump to content
Muxe Inc Forums

Quant

Members
  • Content count

    24
  • Joined

  • Last visited

Everything posted by Quant

  1. Open Source NDN

    Hi AH, What do you think about making NDN to open source ? Is there any way to make it open source ? Regards...
  2. If you interesting with this subject please visit the vpascal.com ! Regards...
  3. 1. Clock Alignment: - Check clock position after every Video-Mode change operation, please. If "Left align clock" checkbox not selected, clock should be right aligned ! but users may change clock position with mouse... you must calculate "how much we are far from max_video_cols"... example: a. startup/current video mode 80x25: xx := 80 - Clock.Left; b. when user changed video mode to 120x55 at run-time: Clock.Left := 120 - xx; c. when user changed clock position at run-time: xx := 120 - Clock.Left; 2. DOS Box Window Close: - StartUp/ShutDown -> Smart Windows Box Close option doesn't work correctly. - Confirmations -> DOS Box Window Close option doesn't work correctly. 3. StarUp/ShutDown Dialog Caption: - Should be "StartUp/ShutDown" (currently is "Startup"). 4. Resizing "Name Section": - Resize the "name section" with mouse and scroll the (same) panel with arrow keys... a. Now, try to resize the "name section" again... You can't... b. Press up_arrow/down_arrow key to scroll-up/down file cursor... When scrolling up and down file cursor paints sub-directories wrongly (before trying this, panel must be scrolled with right arrow key)... 5. When running in windowed mode... right click to dos box caption bar for displaying pop-up menu... select "properties" item and change your dos box window layout... such as hange your window to 120x55... NDN does nothing... but FAR File Manager detects this type of video changes... 6. How can I set 120x55 video mode from .ini file ? Wich are the options ? Regards...
  4. Some bugs and a little question...

    4) a. resize the "name" column with mouse and scroll the same panel to right with right arrow key... now, you can see name column divider but you cannot click it for resizing... ok ?! b. yes. 7) when running in windowed mode, set the biggest video-mode and maximize the dos box by clicking its caption bar twice. resize/maximize the left file panel with mouse... now, try to resize/maximize "name" column... NDN will be crash... 8) when running in full-screen mode, resize/maximize left file panel with mouse... resize/maximize name column with mouse... press alt+enter to return windowed mode... press shift+f12... select biggest video-mode (last mode of list)... NDN will be crash... Regards...
  5. +1, I want to use this great feature :)
  6. CheckBoxesE look

    I like this: {X}
  7. To all users!

    Hi AH, Right mouse buttons' default value is "ENTER key" in DOS Navigator Open Source Project. This means: right button sends an ENTER key signal to Turbo Vision core... Focused control catches the event... the only rule is right mouse click must be in out of dialog... Regards...
  8. Folders placed in archive files cannot displayed/listed ?! Regards...
  9. Hello AH, Could you add support for user defined video modes (in Win32 windowed mode) ? uses VPUtils; begin // Set the window to 100x38 character cells SetVideoMode( 100, 38 ); end. This example is copied from Virtual Pascal's help file... Virtual Pascal's help file says "don't use this procedure with Turbo Vision" but DOS Navigator Open Source Project has this feature. Please try to add this feature to NDN. :) Regards... Note: Sorry for my horrible English... :(
  10. F2: Menu

    I have found a global/local menu bug... Please try this example... >1 ~A~. Example Echo. When you run the "Example" menu item, you will get a command prompt error in WinNT/2K/XP: "The filename, directory name, or volume label syntax is incorrect." My NDN Temp dir is set to C:\TEMP... When I try to run C:\TEMP\$NDN0$.BAT manually, it runs correctly... $NDN0$.BAT: @Echo Off Echo. I thing this is a NDN v2.14 Build 5055 specific bug... Because Alt Test version doesn`t have this bug... Regards...
  11. F2: Menu

    I will happy if you release a new build... :) Note: I love NDN... Regards...
  12. I see this message in news section (right side of home page)... 07.05.2004 NDN v2.14 Build 5508 released ...I think current version is 2.14.5055 ?!? Regards...
  13. Hi all ! I have some wishes for NDN's SmartPad... 1. Could you open SmartPad maximized ? 2. Could you add an option(s) for seperator lines (I don't want to see seperator lines...) ? If it is hard to add an option(s) to GUI side, could you add an option(s) to .ini file: ... these lines copied from DOS Navigator Open Source Project's .ini file: [smartPad] LineChar=196 InsertDate=0 I think these are enough for us.... [smartPad] InsertDate=0 Maximized=1 Regards...
  14. buglist for 2.14.5055/w32

    Hi All ! Thanks for the new release... I have found a little bug in comment highlighting... { This is a comment... Comments are important for coding... } NDN-Editor colorize "}" as symbol... You can see this bug only when "}" is the first char. of the line (start of line)! Regards... Note: I am not a native English speaker, If I do English grammer mistakes, please tell me...
  15. How can I colorize the {$...} pascal condition blocks as GREEN with RegKeyWords ??? Please help... Regards...
  16. RegKeyWords...

    This is a good news. Thank you very much Garl... Regards...
  17. old regexp bug

    I have found similar bug in RegKeyWords (RegExp)... I want to colorize {$...} pascal condition blocks as Green with RegKeyWords. I have tried these two methods: 1.RegKeywords Color Lightgreen \{[^\}\{]+\} 2.RegKeywords Color Lightgreen \{\$[^\}\{]+\} Example Condition Block: {$DEFINE DELPHI_4_UP} {$IFDEF VER100} {$UNDEF DELPHI_4_UP} {$ENDIF} {$IFDEF VER110} {$UNDEF DELPHI_4_UP} {$ENDIF} When "Del right spaces = ON" and "End trims right = ON" 1. First condition line is not colorized 2. Both {$ENDIF} conditions are not colorized When I add space(s) to end of lines, all is ok... I think this is a BUG ! :(
  18. Alt+Enter = Extension Menu ?!

    Alt+Enter key combination is used for showing extension menu under NDN... But this key combination is used for Full-Screen/Windowed swithing under windows... Is there any other key combination for showing extension menu ? If the answer is NO, could you change or add key combination for ext. menu ?
  19. Alt+Enter = Extension Menu ?!

    Sometimes I am using both three extension methods... Example: Asm {FAsm.Exe !.! !.Exe} Asm (FAsm.Exe !.! !.Com} Asm [ >1 ~1~. Make .Exe OutPut FAsm.Exe !.! !.Exe >1 ~2~. Make .Com OutPut FAsm.Exe !.! !.Com >1 ~3~. Make .DLL OutPut FAsm.Exe !.! !.DLL ] ... but Alt+Enter doesn`t work. I think you could define new key combination for ext. menu, such as Shift+PageDown. ... now I am using Global menu, but this is not a correct way...
  20. RegKeyWords...

    I have tried your colorization methods: {$DEFINE DELPHI_4_UP} {$IFDEF VER100} {$UNDEF DELPHI_4_UP} {$ENDIF} {$IFDEF VER110} {$UNDEF DELPHI_4_UP} {$ENDIF} When "Del right spaces = ON" and "End trims right = ON" 1. First condition line is not colorized 2. Both {$ENDIF} conditions are not colorized When I add space(s) to end of lines, all is ok... Is this a bug ??? Any solution ??? Try this condition block and help me again please... Regards...
  21. (NumPad)/ don`t works in command prompt... (NDN/W32) Regards...
  22. Bug Report For NDN 2.14.4359B/Eng

    Hi, I have tested (NumPad) / and * I`m sorry... I have reported this feature as bug... :( ...but now, I know what the (NumPad)/ and * is doing... :) Thank you... Regards...
  23. 1. Mouse cursor disappears in full-screen mode after running GUI executables... a. Solution: Type Exit and press RETURN key for refreshing mouse cursor, b. Solution: Try to run console/dos application for refreshing mouse cursor... 2. Editing cursor, positions incorrectly in Edit Fields and Editors. Sometimes I was working long time in NDN. I usualy using these tasks Copy/Move/ReName files, editing Pascal and Assembler files, executing external applications... but I don`t know when this bug appear :( No solution... Notes: I am using NDN/W32 - Alt Beta Release... My Computer: Windows XP - Service Pack 2, English version, Regional Settings configured for United States 256 MB RAM 40 GB HardDisk NTFS/Dynamic formatted Microsoft Internet KeyBoard (Turkish Q) Plugged to PS/2 Port (This is why I am using AltGr version of NDN) :) Microsoft Wheel Mouse Optical plugged to USB port (Standard 2-Button and extra wheel-button) NDN is the best file/archive management and development utility I have ever seen... Thank you very much for this great application... (Sorry, my English is not good, I am not a native English speaker...) Regards...
  24. Bug Report For NDN 2.14.4359B/Eng

    Yes, I have currently using this release. I was reported NumPad/ bug for Alt Beta release... Regards...
×