Results 1 to 22 of 22

Thread: Change desktop.

  1. #1

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Change desktop.

    Well ive got an idea, and id like to know how to change the desktop background thing...also refreshing every minute, would that take alot of resources?or freeze the comp?

  2. #2
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    Are you trying to make some kind of slide show using your desktop wallpaper?

    Anything takes up resources, but it just depends on how you code it.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  3. #3

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    no, im gonna put the time (now) and (date) and stuff over the desktop, like in a corner, and i want it to update whenever the time updates

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    Why not just create a borderless windowed app? Then you can have the background
    transparent so you only see the numbers, etc?

    Are you running 2000 or above?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  5. #5

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    well, i want to be able to put stuff over (icons)and still see it, and i want to be able to click the icons, is this possible?

    ediT**
    how about floating text, is that possible? nothing except text?

  6. #6
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    Floating text is possible if you are running Windows 2000 or above.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  7. #7

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    sorry, yes i do have that..forgot to answer that one

  8. #8
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    This will make your form transparent to whatever level you want.
    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" _
    4. (ByVal lpLibFileName As String) As Long
    5.  
    6. Private Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, _
    7. ByVal lpProcName As String) As Long
    8.  
    9. Private Declare Function FreeLibrary Lib "kernel32" (ByVal hLibModule As Long) As Long
    10.  
    11. Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" _
    12. (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
    13.  
    14. Private Declare Function SetLayeredWindowAttributes Lib "user32" (ByVal hwnd As Long, _
    15. ByVal crKey As Long, ByVal bAlpha As Byte, ByVal dwFlags As Long) As Long
    16.  
    17. Private Const GWL_EXSTYLE = (-20)
    18. Private Const WS_EX_LAYERED = &H80000
    19. Private Const LWA_ALPHA = &H2
    20.  
    21. Public Sub AlphaBlendForm(ByVal lHwnd As Long, ByVal intTranslucenceLevel As Integer)
    22.     If APIExists("SetLayeredWindowAttributes", "User32") Then
    23.         SetWindowLong lHwnd, GWL_EXSTYLE, WS_EX_LAYERED
    24.         SetLayeredWindowAttributes lHwnd, 0, intTranslucenceLevel, LWA_ALPHA
    25.     Else
    26.         MsgBox "Your OS does not support Alpha Blending.", vbExclamation, "Alpha Blend"
    27.     End If
    28. End Sub
    29.  
    30. Public Function APIExists(ByVal pstrFunctionName As String, ByVal pstrDllName As String) As Boolean
    31.     Dim lngHandle   As Long
    32.     Dim lngAddr     As Long
    33.     lngHandle = LoadLibrary(pstrDllName)
    34.     If Not (lngHandle = 0) Then
    35.         lngAddr = GetProcAddress(lngHandle, pstrFunctionName)
    36.         FreeLibrary lngHandle
    37.     End If
    38.     APIExists = Not (lngAddr = 0)
    39. End Function
    40.  
    41. Private Sub Form_Load()
    42.     'Form1.BorderStyle = 0 set this in design time properties window
    43.     AlphaBlendForm Me.hwnd, 128 'MAX VALUE = OPAIC/ MIN VALUE = 0 CAN'T SEE'
    44. End Sub
    Now we just need to cut out what we dont want to show.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  9. #9
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    I think my code to cut out regions is at work. I'll connect and check.
    This is the last part we need.
    Be back in a few.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  10. #10

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    got it to get the time, now all i need is so its clickable and formless, why dont i just make the form the size of the text box?

    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" _
    4. (ByVal lpLibFileName As String) As Long
    5.  
    6. Private Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, _
    7. ByVal lpProcName As String) As Long
    8.  
    9. Private Declare Function FreeLibrary Lib "kernel32" (ByVal hLibModule As Long) As Long
    10.  
    11. Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" _
    12. (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
    13.  
    14. Private Declare Function SetLayeredWindowAttributes Lib "user32" (ByVal hwnd As Long, _
    15. ByVal crKey As Long, ByVal bAlpha As Byte, ByVal dwFlags As Long) As Long
    16.  
    17. Private Const GWL_EXSTYLE = (-20)
    18. Private Const WS_EX_LAYERED = &H80000
    19. Private Const LWA_ALPHA = &H2
    20.  
    21. Public Sub AlphaBlendForm(ByVal lHwnd As Long, ByVal intTranslucenceLevel As Integer)
    22.     Form1.BorderStyle = 0
    23.     If APIExists("SetLayeredWindowAttributes", "User32") Then
    24.         SetWindowLong lHwnd, GWL_EXSTYLE, WS_EX_LAYERED
    25.         SetLayeredWindowAttributes lHwnd, 0, intTranslucenceLevel, LWA_ALPHA
    26.     Else
    27.         MsgBox "Your OS does not support Alpha Blending.", vbExclamation, "Alpha Blend"
    28.     End If
    29. End Sub
    30.  
    31. Public Function APIExists(ByVal pstrFunctionName As String, ByVal pstrDllName As String) As Boolean
    32.     Dim lngHandle   As Long
    33.     Dim lngAddr     As Long
    34.     lngHandle = LoadLibrary(pstrDllName)
    35.     If Not (lngHandle = 0) Then
    36.         lngAddr = GetProcAddress(lngHandle, pstrFunctionName)
    37.         FreeLibrary lngHandle
    38.     End If
    39.     APIExists = Not (lngAddr = 0)
    40. End Function
    41.  
    42. Private Sub Form_Load()
    43.     Text1.Text = 5
    44.     'Form1.BorderStyle = 0 set this in design time properties window
    45.     AlphaBlendForm Me.hwnd, 30 'MAX VALUE = OPAIC/ MIN VALUE = 0 CAN'T SEE'
    46. End Sub
    47.  
    48. Private Sub Text1_Change()
    49. Text2.Text = Now
    50. If Text1.Text < 0 Then
    51. Text1.Text = 5
    52. End If
    53. End Sub
    54.  
    55. Private Sub Timer1_Timer()
    56. Text1.Text = Val(Text1.Text) - 1
    57. End Sub

  11. #11
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    The problem is that this method will make all controls and the form transparent. So we need to
    create "regions" to tell windows that we dont want to use the areas and we release them
    to windows. So if something is behind it you can actually click through it even though
    your clock is on top of it.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  12. #12

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    so it is possible?and another thing, how do i make it so a form isnt sizable?i cant find the cmd, is it also possible to get rid of the whole blue bar on top? i want it as small as possible? i can make my own form_unload inside the proggy

  13. #13
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    Yes its possible.

    To make a form non-sizeable go to the design time properties window for the Forms props and change BorderStyle to 0 - None.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  14. #14

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    hmm, tried this:
    AlphaBlendForm Text1.BackColor, 20
    doesnt work, it made the whole form invisible once, then didnt work anymore..ill work on this..

    edit**
    found out labels can be transparent, now to make the background transparent : )
    Last edited by |2eM!x; Feb 16th, 2005 at 11:27 PM.

  15. #15
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    But you dont understand, all the controls will be the same transparency as the form.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  16. #16

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    well, i thought the text box would still be white as a background and that the text would fade too, and i also thought that with the label that since i dont have a form(its the same size) that it would have a clear background, with letters?

    i hope you get my gist..
    now to look for a movewindow on click api, i had it before-dang

  17. #17
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    I almost got it complete. So you want the background of the textbox to be solid or transparent?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  18. #18

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    transparent, heres waht i have:
    hope we are on the same page ; )
    Attached Files Attached Files

  19. #19
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    Here it is but the background of the textbox can not be made transparent
    without loosing the digits visibility. A label will not be any better since it is
    not a real transparent backcolor.

    This is a screenshot of it on my desktop (clouds).




    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function CreateRectRgn Lib "gdi32" (ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, _
    4. ByVal Y2 As Long) As Long
    5.  
    6. Private Declare Function CombineRgn Lib "gdi32" (ByVal hDestRgn As Long, ByVal hSrcRgn1 As Long, ByVal hSrcRgn2 As Long, _
    7. ByVal nCombineMode As Long) As Long
    8.  
    9. Private Declare Function SetWindowRgn Lib "user32" (ByVal hWnd As Long, ByVal hRgn As Long, _
    10. ByVal bRedraw As Boolean) As Long
    11.  
    12. Private Declare Function DeleteObject Lib "gdi32" (ByVal hObject As Long) As Long
    13.  
    14. ' Constants used by the CombineRgn function
    15. Private Const RGN_AND = 1
    16. Private Const RGN_OR = 2
    17. Private Const RGN_XOR = 3
    18. Private Const RGN_DIFF = 4
    19. Private Const RGN_COPY = 5
    20.  
    21. Private Sub Form_Activate()
    22.  
    23.     Dim rgnForm As Long, rgnCombined As Long
    24.     Dim rgnControl As Long, X As Long
    25.     Dim formWidth As Single, formHeight As Single
    26.     Dim borderWidth As Single, titleHeight As Single
    27.     Dim ctlLeft As Single, ctlTop As Single
    28.     Dim ctlWidth As Single, ctlHeight As Single
    29.     Dim ctl As Control
    30.  
    31.     ' Calculate the form area
    32.     borderWidth = (Me.Width - Me.ScaleWidth) / 2
    33.     titleHeight = Me.Height - Me.ScaleHeight - borderWidth
    34.     ' Convert to Pixels
    35.     borderWidth = ScaleX(borderWidth, vbTwips, vbPixels)
    36.     titleHeight = ScaleY(titleHeight, vbTwips, vbPixels)
    37.     formWidth = ScaleX(Me.Width, vbTwips, vbPixels)
    38.     formHeight = ScaleY(Me.Height, vbTwips, vbPixels)
    39.    
    40.     ' Create a region for the whole form
    41.     rgnForm = CreateRectRgn(0, 0, formWidth, formHeight)
    42.    
    43.     rgnCombined = CreateRectRgn(0, 0, 0, 0)
    44.     ' Make the graphical area transparent by combining the two regions
    45.     X = CombineRgn(rgnCombined, rgnForm, rgnForm, RGN_DIFF)
    46.  
    47.     ' Make the controls visible
    48.     For Each ctl In Controls
    49.         ' Make the regions of controls whose container is the form visible
    50.         If ctl.Name <> "Timer1" Then
    51.             If TypeOf ctl.Container Is Form Then
    52.                 ctlLeft = ScaleX(ctl.Left, vbTwips, vbPixels) + borderWidth
    53.                 ctlTop = ScaleX(ctl.Top, vbTwips, vbPixels) + titleHeight
    54.                 ctlWidth = ScaleX(ctl.Width, vbTwips, vbPixels) + ctlLeft
    55.                 ctlHeight = ScaleX(ctl.Height, vbTwips, vbPixels) + ctlTop
    56.                 rgnControl = CreateRectRgn(ctlLeft, ctlTop, ctlWidth, ctlHeight)
    57.                 X = CombineRgn(rgnCombined, rgnCombined, rgnControl, RGN_OR)
    58.             End If
    59.         End If
    60.     Next ctl
    61.    
    62.     ' Set the clipping area of the window using the resulting region
    63.     SetWindowRgn hWnd, rgnCombined, True
    64.    
    65.     ' Tidy up
    66.     X = DeleteObject(rgnCombined)
    67.     X = DeleteObject(rgnControl)
    68.     X = DeleteObject(rgnForm)
    69.    
    70. End Sub
    71.  
    72. Private Sub Command1_Click()
    73.     Unload Me
    74. End Sub
    75.  
    76. Private Sub Form_Load()
    77.     Timer1.Interval = 1000
    78.     Timer1.Enabled = True
    79.     Text1.Text = Format(Now, "MM/DD/YYYY hh:mm:ss AMPM")
    80. End Sub
    81.  
    82. Private Sub Timer1_Timer()
    83.     Text1.Text = Format(Now, "MM/DD/YYYY hh:mm:ss AMPM")
    84. End Sub
    I hope this is what you were wanting.
    Attached Images Attached Images  
    Attached Files Attached Files
    Last edited by RobDog888; Feb 16th, 2005 at 11:54 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  20. #20

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    thanks, here it is
    Attached Files Attached Files

  21. #21
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Change desktop.

    I dont have WinRar. Could you upload a zip?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  22. #22

    Thread Starter
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: Change desktop.

    yeah, sure..you should probably get winrar sometime-it compresses better, and can read winzip and stuff..i like it..
    know just to make it click thru, except for the x box
    Attached Files Attached Files
    Last edited by |2eM!x; Feb 17th, 2005 at 05:49 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width