Jump to content
Compatible Support Forums

Xiven

Members
  • Content count

    690
  • Joined

  • Last visited

    Never

Everything posted by Xiven

  1. Xiven

    Windows XP and DirectX

    Nothing strange really. The DirectX 7 interfaces are still in there 'cause otherwise any program written for DX7 would no longer work once DX8 was installed.
  2. Xiven

    HPT370 + RAID0=No problemo

    WARNING: up[censored] your BIOS can make the RAID array stop working (you may have to recreate the array). Backup your data first!
  3. msgina.dll is the file containing the old-style logon images. copy the file to msgina2.dll or something, edit it in your favourite resource hacking program and then add this line to your registry: REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] "GinaDll"="msgina2.dll" replacing msgina2.dll with whatever you named your new msgina.dll
  4. Xiven

    I love Front Page

    I don't use dreamweaver personally, though I know someone who uses Dreamweaver UltraDev, and I have to admit, it's pretty good for a WYSYWIG editor. It can generate reasonable HTML, and it even integrates fairly well with ASP (with databases and the like). Having said all that though, I'd never use it. I use UltraEdit for writing flat HTML and SHTML pages, and I use Visual Interdev for ASP and anything database related. I worked for a year as a Web Developer working on Web Applications on a company intranet and I had to fix a lot of trashy HTML pages while there which is probably why I so passionately hate MS FrontPage.
  5. Xiven

    I love Front Page

    Quote: Ick, but then again I don't use embedded style sheets. I just link to external CSS files so I can control the look of the site from one location. I don't use embedded style sheets either, it was just easier to provide a one-file example.
  6. Xiven

    AT (scheduling) command

    It runs under the "System" user. AFAIK there is no way of making it run under any other user account.
  7. Xiven

    I love Front Page

    Please excuse the huge long post. Okay, following is an example of an HTML document created by FrontPage that is claimed to be an HTML 4 document. I've hidden some parts to hide the identity of the site itself. Now let's spot the errors shall we? ___________ [size:9]Missing <!doctype> declaration - see here for details[/color] <html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40"> [size:9]<html> tag can only have 2 attributes: "lang" & "dir". All other attributes are invalid (details).[/color] <head> <meta http-equiv="Content-Language" content="en-gb"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <link rel="File-List" href="***************/filelist.xml"> <title>***************</title> <base target="main"> <!--[if !mso]> <style> v\:* { behavior: url(#default#VML) } o\:* { behavior: url(#default#VML) } .shape { behavior: url(#default#VML) } </style> <![endif]--> <!--[if gte mso 9]> <xml><o:shapedefaults v:ext="edit" spidmax="1027"/> </xml><![endif]--> [size:9]The above 10 lines are complete and utter MS trash. There is no such tag "<xml>" and the rest serves no purpose whatsoever and is certainly not valid HTML.[/color] </head> <body text="#FFFFFF" bgcolor="#000080"> [size:9]Styles should be specified using a style sheet. The "text" and "bgcolor" attributes are no longer in the HTML standard.[/color] <p><!--[if gte vml 1]><v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136" adj="10800" path="m@7,l@8,m@5,21600l@6,21600e"> <v:formulas> <v:f eqn="sum #0 0 10800"/> <v:f eqn="prod #0 2 1"/> <v:f eqn="sum 21600 0 @1"/> <v:f eqn="sum 0 0 @2"/> <v:f eqn="sum 21600 0 @3"/> <v:f eqn="if @0 @3 0"/> <v:f eqn="if @0 21600 @1"/> <v:f eqn="if @0 0 @2"/> <v:f eqn="if @0 @4 21600"/> <v:f eqn="mid @5 @6"/> <v:f eqn="mid @8 @5"/> <v:f eqn="mid @7 @8"/> <v:f eqn="mid @6 @7"/> <v:f eqn="sum @6 0 @5"/> </v:formulas> <v:path textpathok="t" o:connecttype="custom" o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800" o:connectangles="270,180,90,0"/> <v:textpath on="t" fitshape="t"/> <v:handles> <v:h position="#0,bottomRight" xrange="6629,14971"/> </v:handles> <o:lock v:ext="edit" text="t" shapetype="t"/> </v:shapetype><v:shape id="_x0000_s1026" type="#_x0000_t136" style='width:121.5pt; height:35.25pt'> <v:shadow on="t" opacity="52429f"/> <v:textpath style='font-family:"Arial Black";font-style:italic;v-text-kern:t' trim="t" fitpath="t" string="**********"/> </v:shape><![endif]--><![if !vml]> [size:9]The above 25 or so lines are total garbage and have no meaning in HTML[/color] <img border=0 width=167 height=51 src="*************/image001.gif" alt=************ v:shapes="_x0000_s1026"><![endif]> <font size="1" face="Tahoma"> *******************</font></p> [size:9]<font> tag is deprecated in HTML 4 (no longer valid)[/color] <p align="center"> <a title="Downloads" href="downloads.htm"> <img border="0" src="******************/Downloads.gif" width="120" height="54"></a></p> </body> </html> ___________ Okay, now here's the same page written in proper HTML: ___________ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html lang="en-gb"> <head> <style type="text/css"> body: { background-color: #000080; color: #ffffff; } img: { border: none; } p: { font-family: tahoma, arial, sans-serif; } p.center: { text-align: center; } </style> </head> <body> <p> <img width="167" height="51" src="*************/image001.gif" alt="************"> ******************* </p> <p class="center"> <a title="Downloads" href="downloads.htm"> <img border="0" src="******************/Downloads.gif" width="120" height="54"></a> </p> </body> </html> ____________ Now which one do you think will take longer to load?
  8. Xiven

    I love Front Page

    Quote: Says it all. Makes doing webpages a hell of a lot easier and error free! That and a nice student discount got me it for ten bucks... NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
  9. Xiven

    Any way to remap keyboard keys?

    There's a program that does this in the Win2k Resource Kit called Remapkey.exe Getting hold of it could be tricky if you don't have the Win2k resource kit though. There may be a freeware equivalent around too.
  10. Xiven

    Lost my Admin Tools. List, anyone?

    For Win2k Pro: Component Services: %SystemRoot%\system32\Com\comexp.msc Computer Management: %SystemRoot%\system32\compmgmt.msc /s Data Sources (ODBC): %SystemRoot%\system32\odbcad32.exe Event Viewer: %SystemRoot%\system32\eventvwr.msc /s Local Security Policy: %SystemRoot%\system32\secpol.msc /s Performance: %SystemRoot%\system32\perfmon.msc /s Services: %SystemRoot%\system32\services.msc /s Telnet Server Administration: %SystemRoot%\system32\tlntadmn.exe
  11. Xiven

    My new website - check it out

    By the way, I just found an excellent tutorial site for HTML: http://www.w3schools.com/html/html_www.asp
  12. Xiven

    My new website - check it out

    Quote: of course, i cant see your source Ermmm... tried using right-click -> View source?
  13. The new 1.09c patch is out. Does it make any difference for you people having problems?
  14. To delete a registry key, put a minus sign in front of it in the .reg file: Windows Registry Editor Version 5.00 [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\ CurrentVersion\Explorer\RemoteComputer\NameSpace\ {D6277990-4C6A-11CF-8D87-00AA0060F5BF}] @="Scheduled Tasks"
  15. Xiven

    Easy CD Creator in XP having probs

    Isn't Easy CD Creator the one that burns only coasters if you give it an invalidated serial number? Not that I'm suggesting that anyone here is using an illegal copy or anything...
  16. Xiven

    How to load internet connection before ICQ?

    If you move it from the registry into your startup folder, it should load a lot later...
  17. Xiven

    Win2k and Homeworld problem

    I assume you've got homeworld patched to the latest version?
  18. Xiven

    Win2k and Homeworld problem

    If the only thing that's changed is the memory, try testing the memory to see if it's okay. Try testing it with memtest86
  19. Xiven

    Unbloating XP

    ...go crazy? (Simpsons episode quote for the confused)
  20. Xiven

    Audigy Platinum EX or Game Theater XP in WinXP?

    My only experiences with the Game Theater XP are bad. The control panel crashes occasionally, playback of mpegs results in major skipping unless the sound acceleration is turned down (and it has this nasty habit of turning it back up when you reboot) and EAX support is dodgy in some programs. The drivers have improved a lot since it first came out but it still needs much work. Audigy I can't comment on, but I've heard a few people say good things about it.
  21. Xiven

    Win2k and Homeworld problem

    System specs please.
  22. Xiven

    Happy Birthday, BladeRunner

    Happy Birthday! He's probably asleep right now like I really should be (it's 5am).
  23. Xiven

    Best Win2000 Compatible Multiplayer games

    MS Hearts: 2 Quake 3 (+ Rocket arena 3): 8 Rogue Spear: 8 Serious Sam: 8 Starcraft Broodwar: 10 Star Trek Armada: 6 That's about it. Tribes 2 and Diablo 2 I play online only.
  24. Xiven

    Viper II z200 agp graphics card

    The Diamond Viper 2 is a TNT-based card so drivers from http://www.nvidia.com should sort you out
  25. Okay, this might work: Go to Control Panel -> System, go to Advanced tab and click the Settings... button in the Performance section. Select Custom and then untick all that you don't want. One of these is "Use a background image for each folder type" and one is "Use common tasks in folders". Untick both of them and try it.
×