Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.55 KB | None | 0 0
  1. Private Sub Form_Load()
  2.     UnloadBG
  3.     frm_Login.Show 1
  4. End Sub
  5.  
  6. Public Function UnloadBG()
  7.     Dim Descriptions As SkinDescriptions
  8.     Set Descriptions = SkinFramework.EnumerateSkinDirectory(App.Path + "\Styles", True)
  9.     Dim Des As SkinDescription
  10.     For Each Des In Descriptions
  11.         Debug.Print Des.Name & " - " & Des.Path
  12.     Next
  13.     SkinFramework.LoadSkin App.Path + "\Styles\Codejock.cjstyles", ""
  14.     SkinFramework.ApplyWindow Me.hwnd
  15.     SkinFramework.ApplyOptions = SkinFramework.ApplyOptions Or xtpSkinApplyMetrics
  16. End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement