-
Flash - Adding A Font?
Try this from the actionscript dictionary: http://www.adobe.com/support/flash/action_...tionary373.html
-
MSFN's Official Free Software List
Check out http://thedutchjewel.6x.to/ for the best freeware software. A nice and impressive big updated list of freeware.
-
All outgoing emails automatically marked as High Priority
In Outlook 2003: Tools > Options. Click E-mail Options from the Option's dialog Preferences tab. Then, click the Advanced E-mail Options button. I don't know how to do it in other versions but is must be in a familiar way.
-
4.6 Beta 2 BUG REPORT
On my laptop I've exact the same situation. XPize 4.3, IE7 and WMP11 installed. I've just uninstalled XPize 4.3 after reloading but IE7 and WMP11 are also uninstalled. I think this is not yet a problem with XPize 4.6 Beta 2 but it could be if this bug isn't fixed in the past versions. I haven't read the changelogs so I dont know. If it isn't fixed in the past I think it's a must have for the comming release . . . I'm going to install XPize 4.6 Beta 2 in a few minutes, I love XPize; XPero keep on going the good work!
-
4.6 Beta 2 BUG REPORT
I have just installed 4.6 Beta 2. First of all i've uninstalled 4.3 and after that IE7 and WMP11 seems to be uninstalled. After installing 4.6 Beta 2 and reinstalling IE7 and WMP11 it all works fine for me but this is a very dirty bug. I think it's because the uninstaller stores the current settings from the installation of 4.3. Afterwards i've installed IE7 and WMP11 . . .
-
SQL Query Help
Something like this? SELECT info_tbl.NM_PK, rank_tbl.RANK_NAME, info_tbl.NAME FROM info_tbl INNER JOIN rank_tbl ON info_tbl.RANK = rank_tbl.RANK_NB;
-
MSFN Website menus?
After a little search in the code and one google search i found this: http://www.milonic.com/ Here you can download the menu, and view / download many examples as well greetz, Dutchdre
-
How to remap F1 key to create a new folder
I found something very intresting: http://www.anzio.com/support/documentation/remap.htm
-
Can't install Daemon tools
I found the same problem on the official daemon-tools website. Check it out there
-
What system files have Icons?
Download XPize MCE XPize is a GUI enhancer that replaces most of the non-XP icons, avis and bmps that Microsoft has always overlooked. It also includes some extras and a reloader, which you can use after visiting Windows Update.
-
change icon of exe files
I've downloaded ZSNES v1.42 and scanned with PEiD v0.93 The exe file is encrypted with: UPX 0.89.6 - 1.02 / 1.05 - 1.24 -> Markus & Laszlo
-
Help Me Enable GD for PHP
Check the official PHP GD manual: http://www.php.net/gd
-
SOUNDEX in VB ?
I found this: The "Soundex" Function in Visual Basic I think it can help you out...
-
How to change the keyboard layout of another process
Read this small tutorial. I think i can help you out
-
ArrayList
You can better use an Iterator, this class can also handle other collections than ArrayLists. Iterator it = Arrangements.iterator(); while(it.hasNext()) { System.out.println(it.next()); }