topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Sunday November 16, 2025, 2:18 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 94 95 96 97 98 [99] 100 101 102 103 104 ... 310next
2451
There is a version of DVDSkrink which is integrated with ImgBurn - so you can reduce that to one step and forget CopyToDVD.

See http://forums.afterd...read_view.cfm/521885
2452
I didn't realise DVDShrink could do that (I suppose I got swept away by the title even though I used to use it) - but as others have pointed out, because of lack of development, it doesn't work with a lot of recent DVDs.
2453
AnyDVD has another function too - it allows you to play other region DVDs without having to switch regions on your DVD drive.

There is a simpler (and probably cheaper) solution these day - just buy an extra DVD writer and set each to different regions!

The other thing with AnyDVD is allows you to copy DVDs at 100% quality - programs like DVDShrink and DVD43 shrink dual layer discs to single layer size by recoding the video content and so reducing the visual quality.

There are other alternatives for copying DVDs which work very easily - DVDFab is one. With DVDFab if you have two drives all you have to do is place the original in on drive and a blank in the other, click a button and go away for a cup of coffee. It also lets you shrink dual layer to single layer  and/or remove regional encoding if you like and if you buy the extra addon it will format video for your iPod or other media player.

I'm sure copying protected DVDs is illegal in most countries these days but I don't see anything morally wrong with protecting your investment by making a backup!
2454
General Software Discussion / Re: Help for solving a XP home lan mystery
« Last post by Carol Haynes on April 30, 2009, 07:14 PM »
Good news - glad you got it sorted out  :Thmbsup:
2455
Living Room / Re: Interesting Discovery Involving Rented Servers
« Last post by Carol Haynes on April 29, 2009, 09:40 PM »
Ouch ....
2456
Will this do? (I just removed the code tags).

For future reference a quick way to do that is to hit 'Quote' as if replying and then just copy the quted contents from the message editor. That is plain text.



Option Explicit

Private Const MY_CUSTOM_TOOLBAR__ = "Virtua"
Private Const MY_CUSTOM_CATEGORIES_BUTTON__ = "Set Categories"
Private Const MY_CUSTOM_CATEGORIES__ = "1 - Client - sent to"


Public Sub AddCustomCategoriesToolbar()
On Error Resume Next
Dim oNewCmdBar As CommandBar
Dim oNewButton As CommandBarButton
   
    '**first check if toolbar exists
    Set oNewCmdBar = Application.ActiveExplorer.CommandBars.Item(MY_CUSTOM_TOOLBAR__)
    '**otherwise create it
    If (oNewCmdBar Is Nothing) Then
        Set oNewCmdBar = Application.ActiveExplorer.CommandBars.Add(MY_CUSTOM_TOOLBAR__)
    End If
   
    '**first check if button exists
    Set oNewButton = oNewCmdBar.Controls.Item(MY_CUSTOM_CATEGORIES_BUTTON__)
    '**otherwise create it
    If (oNewButton Is Nothing) Then
        Set oNewButton = oNewCmdBar.Controls.Add(msoControlButton)
    End If
    '**set the caption & macro to run
    oNewButton.Caption = MY_CUSTOM_CATEGORIES_BUTTON__
    oNewButton.OnAction = "CustomActions_Categories"
   
    '**by default they are created invisible
    oNewButton.Visible = True
    oNewCmdBar.Visible = True
   
End Sub


Private Sub CustomActions_Categories()
On Error Resume Next
Dim oItem As Object
Dim oNewCmdBar As CommandBar
Dim oNewButton As CommandBarButton

    Set oNewCmdBar = Application.ActiveExplorer.CommandBars.Item(MY_CUSTOM_TOOLBAR__)
    Set oNewButton = oNewCmdBar.Controls.Item(MY_CUSTOM_CATEGORIES_BUTTON__)
   
    oNewButton.Caption = "Working..."
    DoEvents
   
    '**loop thru selected items
    For Each oItem In ActiveExplorer.Selection
        '**set their categories if they have the property
        oItem.Categories = MY_CUSTOM_CATEGORIES__
        '**save our change
        If (Err = 0) Then
            oItem.Save
        End If
       
    Next oItem

    oNewButton.Caption = MY_CUSTOM_CATEGORIES_BUTTON__

End Sub


2457
I have three other cases available from computer swaps/dead computers/etc, but they are all within -3 to +4 inches in relation to this one, and the drive cage configurations are no different
-wreckedcarzz (April 28, 2009, 08:50 PM)

You could always put the drives in their own case so that don't compete with any other hot gear - should be room to spread them out then too. Just stand it next to the current case and feed the cables from one to the other.

With 3 spare cases lying around you could give each drive its own case :P
2458
Why not buy a new case and transfer all the hardware into it? You could get a really big tower case and then install the drives with plenty of space around them - that would allow heat to dissipate more easily - as it is you have a number of red hot drives stacked on top of each other and heading for meltdown.

Alternatively get one large drive and transfer the data so you are running a single drive instead of that block of drives.
2459
General Software Discussion / Re: WINDOWS 7 THREAD (ongoing)
« Last post by Carol Haynes on April 27, 2009, 02:51 PM »
It's a damn good idea in my opinion - if this virtual compatibility layer approach is developed properly it should mean that all legacy support in the native Windows can be dropped so that anything running natively can benefit from a leaner and faster operating system.

Provided the compatibility layer only loads when required it would be a huge incentive for legacy developers to update their code to native status which would be fantastic for end users in the long run.
2460
General Software Discussion / Re: Help for solving a XP home lan mystery
« Last post by Carol Haynes on April 25, 2009, 08:34 PM »
Good idea - if there is a security suite installed (I think most Samsung's include MacAfee) try deactivating the software and see if that makes a difference.

Another thing you might want to check is in Control Panel / Folder Options / View tab check at the bottom that easy file sharing is enabled (it should be by standard but Samsung's OEM installation may have tweaked settings).

Failing all this I would be tempted to download the latest drivers for your network adapter and then uninstall the network adapter from Device Manager completely, reboot and install the drivers and network setup wizard from scratch.
2461
General Software Discussion / Re: Help for solving a XP home lan mystery
« Last post by Carol Haynes on April 25, 2009, 09:48 AM »
Try running the network setup wizard on the new computer. I have had similar problems in the past and that seemed to cure it. You can even export the settings to USB stick and apply those settings to every XP based computer on your network.
2462
Living Room / Re: Should I switch from xp to vista?
« Last post by Carol Haynes on April 24, 2009, 01:19 PM »
Quite correct too - make sure you know your place  :-* :-* :-*
2463
Living Room / Re: Should I switch from xp to vista?
« Last post by Carol Haynes on April 24, 2009, 04:59 AM »
Any OS uses All the clock cycles it is given

Tosh - the clock cycles happen (its the nature of a clock to tick!) but if they are not used they are not used. If the OS used every clock cycle it would be running at 100% power it would be under 100% constant load which is simply not true - if it were you would have far more overheating problems out there.

It is a similar argument to saying that because my heart beats constantly it doesn't matter whether I am climbing Everest or sitting in front of the TV my workload is the same.
2464
OK I have been having a play with this language setup and there are a couple of solutions in the form of Joomla plugins.

1) http://extensions.jo...content/1767/details

I have tried this one and it is dead easy to use. You install the plugin and then place a small token {joslang_select} somewhere where a language drop down menu can appear (you may need to edit the template source code or place it in a block somewhere - you can even include it in the text of relevant articles which have translations). In the plugin settings you can specify up to 7 languages (eg. just put a simple list like:

en=English
fr=French

in the plugin settings box. Then use your two letter code to tag content when writing pages etc. for the website - eg.

[en]Hello[/en][fr]Bonjour[/fr]

When you select a language from the drop down menu only the content tagged with that language will be displayed. I haven't tried it but I guess you can also use it in menus and block titles etc. too.


2) http://extensions.jo...content/6348/details

I haven't tried this one yet but it looks as though it can all be automated by the user selecting their own language and then only content in that language will be displayed. Sounds neater but if I understand correctly you effectively produce two documents for each article (each tagged with its own language).

The first approach is more flexible - you set up your site as you want and then can translate what you want when you want and add tags. No tags and it displays in the default language - tags and you get what you want. It also has the benefit that you only create one document for each article (rather than the second method where I think you have to produce 1 document for each langiage for each article. This method is more transparent but then you only get content in the language you choose. add to that it digs into and modifies a lot more native code and you would be relying on the developers to keep it going through new versons of Joomla. The current version has been tested to version 1.5.8 but already Joomla is on 1.5.10 and the updates are security fixes you want to apply - whether you language extension would then work is a bit 'suck it and see'.


There is also an automatic translation extension (joomFish) which a lot of people use. I am not a fan of automatic translation but it is there as an option.


With respect to 'native' language packs for Joomla - I have tried the French pack alongside the English pack and it is simple to choose the default language for the site (a couple of clicks). This translates the backend as well as obvious bits in the front end (and yes the dates are updated automatically to reflect the current language). When a user registers you can give them the option of updating their profile which means they can specify their own native language.

It would be very neat if option 1 above (josLang) could be enhanced one step further by reading the users own language preference rather than having to manually select the language from a drop down (although this is a nice option for unregistered visitors).
2465
General Software Discussion / Re: Sysinternals PageDefrag: Good, Bad?
« Last post by Carol Haynes on April 22, 2009, 08:47 PM »
How's Defraggler?

Very simple - give it a go. It is a tiny download and you don't have to install it (there is a portable version under Alternative downloads).
2466
Living Room / Re: Should I switch from xp to vista?
« Last post by Carol Haynes on April 22, 2009, 07:15 PM »
As for Windows 7 being faster, it might be slightly faster than Vista but it still runs like a tortoise compared to XP and its not surprising as it is still based on the Vista code base.

Not really my experience. Out of the box Vista 'seems' slower because it is doing things (like automatic Windows Defender Scans) without asking the user and loading pointless crap such as the Desktop widgets. Once you strip away the rubbish it runs fin and just as fast as XP. My experience with the Windows 7 beta is that is seems faster (and probably even faster than XP).

At the end of the day I suppose it depends on how you have your system set up - 10 minutes of tweaking makes all the difference with Vista. It used to disk trash but that doesn't seem to happen having stripped out some of the sill processes. They even seem to have fixed the 'confused network adapter' bug/feature these days which was a really annoying gripe.
2467
Having not used multilanguage stuff in Joomla I can't really say how it works but logged in users have the option to choose their default language (assuming the relevant language packs are installed). I would assume that you would have to duplicate content for each language and then the pages would be displayed automatically by users language choice. I am not sure what would happen if you start to add visitor comments etc.

As for dates you can choose your format - for En-GB installations it defaults to UK English format as standard so I can't see why the language packs wouldn't provide automaticaly for relevant formatting (and language). I'll have an experiment tomorrow and see what happens if I install an extra language pack.
2468
General Software Discussion / Re: Sysinternals PageDefrag: Good, Bad?
« Last post by Carol Haynes on April 22, 2009, 07:02 PM »
Two corrections:

32 bit windows is not limited to 3Gb but rather to 4Gb - you lose some of that because it has to include memory mapped devices such as a graphics card so if you have a 1Gb graphics card it is reduced to 3Gb for Windows. If you only have a 128Gb card (enough for Vista Aero interface) you can potentially have 3.875Gb of usable RAM for Windows - it doesn't make any difference if you have XP or Vista.

Re. using a flash card for you page file - bad idea. It will be slower than a fast SATA drive (by a large margin) because it effectively uses a USB bus and you will wear out your flash card rapidly.

Edit: Oops sorry fOdder I didn't see your post - but at least we agree ;)
2469
Re. multiple languages - I haven't used Joomla for that purpose myself but the fact that the United Nations use it to build their site suggests that languages should work pretty well.

I really recomment Artisteer for making templates of your own - you need ABSOLUTELY NO artistic talent just the ability to fiddle and decide what looks good. Plus you can use it for Joomla, Drupal and WordPress (or even a vanilla HTML static site). It is wonderfully easy.

Here is my first (somewhat inclomplete) site using Joomla and a template created in about 15 minutes with Artisteer:

www.friendsofgovi.org.uk

The only bits of the template that took a little simple hand coding are the footer and a few CSS tweaks.

Keep us in touch with what you are up to.
2470
Living Room / Re: Should I switch from xp to vista?
« Last post by Carol Haynes on April 22, 2009, 12:16 PM »
So you like it then  :greenclp:
2471
The trouble is the lack of popups means that you cannot control what it does.

Personally I want this sort of app to pop up and say "App xxxxx is unrecognised - I you know it can be trusted click Always Allow". If you want to opt into the TechNet database thingy that doesn't work that is fine - your response can be logged and ignored but at least you can say that the apps you use every day are trusted. As it stands it either does nothing or blocks essential applications without any control.

Like UAC the temptation is simply to remove the annoyance altogether and take control over what you install yourself - and possibly use a thirdy party anti spyware app to do the job properly.
2472
from Everything FAQ: How do I bypass the UAC to run "Everything" with administrative privileges on system startup?
 (see attachment in previous post)http://www.voidtools...es_on_system_startup

Yes I saw that - I modified the method slightly. It was a big hassle having to create shortcuts and stuff so I simply created a Scheduled Task that pointed at everything.exe and started when I log in to my user account. This won't work if there are more than one user (you'd have to set up a task for each user) but it saves having to create a shortcut to the Task and then put that in the Startup folder.
2473
Well Carol - here goes:
http://www.groovypos...erver-2008-or-vista/

SKA

Thanks - simpler solution than anything I have found is:

Open Windows Defender and go to Option
Scroll down and uncheck 'real-time protection'
Scroll further down and uncheck "Use Windows Defender"

Now when Windows Vista starts up it ignore Windows Defender completely (and if you look in services you can see the service is not running but it has been left on automatic).

All the other suggested fiddling means that you have to remember what you did should you decide to re-enable Defender  with the above method you just go to the Security Centre and start it up again.
2474
I don't know much about Windows Defender - doesn't seem to slow down my laptop (it only does a file scan every now and then), so I've kept it since it doesn't interfere with my work.

As for "Everything" not being able to run at startup, what happens? Does it give an error message, or does it simply not start? It might be an issue of Everything trying to add itself to the HKLM\Software\Microsoft\Windows\Currentversion\Run key, but not being allowed - try manually adding it?

I just get a UAC error at startup saying 'Everything' has been blocked from running (actually it is a little tray icon with a balloon style popup - right clicking on the icon lets me allow the application but you can't tell it to remember that so you have to do it every single time!).
2475
Living Room / Re: Should I switch from xp to vista?
« Last post by Carol Haynes on April 21, 2009, 05:04 AM »
I think 64 bit being slower is counter intuitive (at least it is to me). Surely one of the major reasons to expand the CPU bus to 64 bits is for speed and I would have thought at the very least reading 64 bit words would be the same speed as 32 bit because all 64 bits are collected in exactly the same cyclical way that 32 bit words are on a 32 bit processor.

I don't know enough about 64 bit CPU architecture - but I would have thought a 64 bit processor would expect 64 bit words (even if the the OS is 32 bit) so I assumed there was some sort of transformation between the OS and the CPU to ensure that only 64 bit words got into the CPU - surely that transformation should slow down 32 bit OSes rather than make them faster ??
Pages: prev1 ... 94 95 96 97 98 [99] 100 101 102 103 104 ... 310next