Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bigtimmin

  1. bigtimmin

    Change the Position of the Desktop Wallpaper

    Created a new ID, it worked. Tried using SysInternals Autoruns to see what was causing the problem, no luck! Transferred old ID to new ID, Thanks! http://satellite-tv-for-pc.eklicks.com/
  2. bigtimmin

    Change the Position of the Desktop Wallpaper

    I am using WallpaperoriginX and WallpaperoriginY in the registry key "HKEY_CURRENT_USER\Control Panel\Desktop" to reposition the desktop wallpaper. This worked for a while, now when I log in the wallpaper is centered. If I lock the computer or before I log in it's reposition again. Help...
  3. bigtimmin

    Add a program to the windows context menu

    Check out this article: http://www.codeproject.com/KB/cs/appendmenu.aspx http://satellite-tv-for-pc.eklicks.com/
  4. bigtimmin

    Command to Left Align Data in Excel

    You can also try:xlsSheet.Selection.HorizontalAlignment = xlsApp.Constants.xlGeneral http://satellite-tv-for-pc.eklicks.com/
  5. bigtimmin

    filenames into an array

    use the System.IO.Directory.GetFiles() method. http://satellite-tv-for-pc.eklicks.com/
  6. bigtimmin

    Killing a Prossess

    If the process is not found, the processes array variable will have a length of 0, which causes an error in your foreach loop. Try checking the length, if > 0 then loop. if (processes.Length > 0) { foreach (Process process in processes) {process.Kill()} }...
  7. bigtimmin

    Set desktop background color

    Thanks JurkMonkey, it works just great! http://satellite-tv-for-pc.eklicks.com/
  8. bigtimmin

    Set desktop background color

    Thanks litton1 but I can't used that. When I make the change to the registry, if I log off, then log back on the background color is changed. That tells me that there should be a call that I can make to change it immediately. I don't understand why the call to SystemParametersInfo doesn't...
  9. bigtimmin

    Set desktop background color

    Thanks JurkMonkey but that is for setting the desktop background WALLPAPER, I want to change the desktop background COLOR. I am already using that API function to change the wallpaper, which works just fine. I've tried saving the Colors\Background registry setting and running that same api...
  10. bigtimmin

    Set desktop background color

    Does anyone know how to progmatically set the desktop background color? (C# 2003) http://satellite-tv-for-pc.eklicks.com/
  11. bigtimmin

    Renaming a file programatically

    Using File.Move renames the file. Just change the name in the destination. (see robertfah's example) http://satellite-tv-for-pc.eklicks.com/
  12. bigtimmin

    Recycle Bin Size

    I finally found it in the registry. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\BitBucket. Silly me, I was searching the registry for recycler or recycle bin. http://satellite-tv-for-pc.eklicks.com/
  13. bigtimmin

    Recycle Bin Size

    I finally found it in the registry. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\BitBucket. Silly me, I was searching the registry for recycler or recycle bin. http://satellite-tv-for-pc.eklicks.com/
  14. bigtimmin

    Recycle Bin Size

    Does anyone know how to get the MAXIMUM size of the recycle bin? I'm using VB.Net 2003. Thanks! http://satellite-tv-for-pc.eklicks.com/
  15. bigtimmin

    Recycle Bin Size

    Does anyone know how to get the MAXIMUM size of the recycle bin? I'm using C# 2003. Thanks! http://satellite-tv-for-pc.eklicks.com/

Part and Inventory Search

Back
Top