Jump to content

dman

Member
  • Posts

    708
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by dman

  1. When script is run, %USERPROFILE% variable is replaced by the current user area (usually "documents and Settings") plus the currently logged-on users name. But without modifying the destination you would overwrite each others bookmarks whenever someone else is logged on. If you want to back up multiple users make a line for each one with a different source and destination. You can also use scripting to loop through the users but that is more complicated for beginner.

  2. Really just one command will do it. Something like...

    @echo off
    copy /Y C:\Documents and Settings\<USER>\Application Data\Mozilla\Firefox\Profiles\<zaz3ggmy>.default\bookmarks.html c:\backups\bookmarks.html

    Save that as "backupfox.cmd" or name of your choosing

    note that your user profile will have a different random sequence than "zaz3ggmy", but the rest other than user name is default install path. Just edit the destination where you want it to go. Then just schedule it with task scheduler

    you could also try Fab's autobackup for more complete solution...

    http://autobackup.parisot-net.com/index-en.htm

  3. By "Portable" he means doesn't have to be installed, can just be copied or unzipped and run or run from USB drive. Also keeps all settings within its own directory structure, not in registry or application data folder.

  4. If you are planning this for your editor please put toggle to turn this behavior off... many people find it extremely annoying.

    In answer to question, try making main form "IsMdiContainer" true, then when launching child form, set MdiParent to main form. I.E.

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        Form2.MdiParent = Me
        Form2.Show()
    End Sub

  5. It would be less expensive for Microsoft to offer all people who use Windows 98/ME a free copy of Windows 2000/XP, and ditch support for Windows 98/ME all together.  They could have done that a few years ago, and probably saved money.  It costs probably a lot more to continue supporting Windows 98/ME than the money they'd loose by giving every Windows 98/ME user a free upgrade to Windows XP, especially since software is a non-tangible thing that can easily be reproduced for little cost.  Also, Microsoft makes so much moey by selling lots more than just the Windows OS.  They could have given away Windows XP for free and relied on selling their games and other software to make tons of money.  Then their games and other software would have been cheaper to make because they wouldn't have had to ensure compatibility with POS Windows 98/ME and written the code to run on quality 2000/XP only instead.

    But I guess Microsoft doesn't like the idea of making something with the name Windows on it and giving it away for free, even if it remianed closed source, despite the fact they could have probably saved money with the example I stated above.

    Are you implying that you know better than MS how to make money??

    When you sign up for accounting, take economics too. ;)

  6. What do you mean by good will being considered an asset?
    Take an accounting class. Customer goodwill is an asset with monetary value.
    Are you trying to imply that Microsoft did what they needed to do in order to not p*** off their customers?

    Not implying, saying flat out. But this is only part of it. MS and MS affiliates want to sell games to all of the people that still use 98. They have huge marketing department, so I am sure whatever they decide to support or not support is thoroughly researched.

    From all of the yes/no answers here it seems people don't understand it's not about the OS, it's about the $$$.

  7. Why did Microsoft release DirectX 9 for Windows 98/ME?  It wouldn't make anymore money for them?  Was it a significant amount of extra work for Microsoft to release DirectX 9 for Windows 98/ME in addition to Windows 2000/XP.  If so they shouldn't have done it.  So, would a DirectX game using the same installation programs and files run on a MAC if there was a version of DirectX 9 for MAC OS X?

    MS obviously decided that it DID make sense to support directx on 9x. There are many kinds of value. If you have ever taken accounting you know goodwill is considered an asset.

    Yes, you can create a directx abstraction layer for the mac. it has already been done here...

    http://www.macworld.com/news/2002/04/17/macdx/index.php

    Windows games also use Windows GUI components though, so games will never be "cross platform", but the interaction with the hardware will be coded in the same directx API, making them much more easily ported.

  8. It just is flat out sickening to see games with 2005 in the title that say they are compatible with POS Windows 98/ME.  All modern games should be written to run on a quality platform only which is Windows 2000/XP when it comes to the Microsoft OS world!!

    The games are actually supported by the directx hardware abstraction layer, not the OS. 9x supports directx, so why wouldn't the games be supported?

    On the other hand, hardware companies have to put their money where it makes a profit, so the only correct answer to this question of driver support is "Depends'. If there is enough demand they will support it, thats how it works.

  9. You CAN store values (variables) in both sessions and cookies (though many session-engines uses cookies for it).

    But the way you do it, depends alot on what language you're using.

    You are right of course stalkie.

    // Get the user's input from the form
      $name = $_POST['name'];

    // Register session key with the value
      $_SESSION['name'] = $name;

    I was thinking of the built-in session variables, but you are correct, you can register your own in the session.

  10. A session will not store the username, session is just unique id you can assign on login or initial page load, and check on subsequent requests to make sure it is actually logged in user.

    To have the user name available you can either use cookies, or if you want to support browsers with cookies disabled you can pass the name from request to request in a hidden input form field.

  11. There is a updater on the ubcd4win forum (least there used to be).

    You can also run avpersonal "avwin.exe" from the plugin directory to update before burning cd.

    sysclean has a batch "getsysclean.cmd" to download lates defs. also run from plugin dir

×
×
  • Create New...