BlitzCoder Essentials
•
Home Page
•
About BlitzCoder
•
Contributors
•
Terms of Use
•
Email Us
Main Areas
•
BlitzCoder Chat
•
Discussions
•
Articles/Tutorials
•
Code Database
•
Link Database
•
Showcase Area
•
Worklogs
•
Competitions
Special Areas
•
Undocumented
Other Blitz Sites
•
Blitz Basic Home
•
Blitz Showcase
•
BlitzPlay Library
Forum Login
Username:
Password:
•
Register Now!
BlitzCoder Code Archives Page
Main Codes Page
"Customizing your Blitz IDE"
, by thechange
You can customize your Blitz IDE using the BlitzIDE.Prefs file located in the CFG sub-directory.
Code
;------------------------------------------------------------------------------; ; It is possible to manually edit this file and adjust it to your likings, or ; you can grab the Blitz IDE Manager from the showcase. If you want to edit by ; hand, here's a list of descriptions for each value. You can simply edit the ; file using Notepad. The Blitz IDE Manager can be found here: http://www.blitzcoder.com/cgi-bin/showcase/showcase_showentry.pl?id=snarkbait01252002122515 ; Here goes.. prg_debug 1 ; Whether internal debugging is on or off. 1 means True, 0 means False. prg_lastbuild D:\Path\File.BB ; The file that was last used to create an executable. win_maximized 1 ; Whether the Blitz IDE is maximized by default or not. 1 means True, 0 means ; False. win_notoolbar 0 ; Whether the toolbar isn't enabled or is to. 1 for True (disabled), 0 for False ; (enabled) win_rect 0 0 640 480 ; Simply the position coordinates (X,Y) and horizontal and vertical size of the ; Blitz IDE window when not maximized. font_editor blitz 12 font_tabs verdana 8 font_debug verdana 8 ; Font names and sizes for the editor, tab names of open files and debug frame ; respectively. rgb_bkgrnd 206060 rgb_string df9f9f rgb_ident bfff rgb_keyword df9f rgb_comment 9f9f9f rgb_digit dfbf9f rgb_default 7f7f7f ; Color values, in Red-Green-Blue order, of respectively; background, strings, ; identifiers, keywords, comments, digits, and other characters. Leading zeroes ; can be omitted. edit_tabs 2 ; Number of spaces to use for tabs. edit_blkcursor 1 ; Whether to use a special block cursor or the default line cursor. 1 means ; True, 0 means False. edit_backup 5 ; Total number of times to uniquely backup a BlitzBasic file before compilation. img_toolbar toolbar.bmp ; Filename of external BMP image to use for toolbar icons. cmd_line My parameters ; Blitz remembers the custom command line used which is the same as when ; specifying additional parameters on a command prompt. file_recent D:\Blitz\File3.BB file_recent D:\Blitz\File2.BB file_recent D:\Blitz\File1.BB ; Blitz also remembers the recently opened files for quick access. ; That's all. ; Have fun :D ;------------------------------------------------------------------------------;
Copyright(c) 2000-2004, BlitzCoder. All Rights Reserved.
Code software created by Krylar's Kreations