Jump to content

Reddragon

Members
  • Posts

    12
  • Joined

  • Last visited

Reddragon's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Can anyone provide me with links of dark .msstyles skins that can be used with autoit??
  2. Well i have created a popup form and want to move the form by using a picture on the form.How do I do it? I have written a code but its not working #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 615, 438, 192, 146, $WS_POPUP, 0) $Pic1 = GUICtrlCreatePic("", 40, 56, 337, 161, 0, $GUI_WS_EX_PARENTDRAG) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
  3. I want two snippets of vb.net code converted to autoit.Please help. The two snippets are: Dim fs AsFileSystemSecurity = File.GetAccessControl(txtbxBrowseFolderName.Text) fs.AddAccessRule(NewFileSystemAccessRule(Environment.UserName, FileSystemRights.FullControl, AccessControlType.Deny)) File.SetAccessControl(txtbxBrowseFolderName.Text, fs) Dim fs AsFileSystemSecurity = File.GetAccessControl(txtbxBrowseFolderName.Text) fs.RemoveAccessRule(NewFileSystemAccessRule(Environment.UserName, FileSystemRights.FullControl, AccessControlType.Deny)) File.SetAccessControl(txtbxBrowseFolderName.Text, fs)
  4. Thanks M23 you always help :-D
  5. Well i dont want the typical windows border and and everything so i desgined a form with nothing else but how do i drag it.the code for that form is here #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 615, 438, 192, 146, $WS_POPUP, $WS_EX_TOOLWINDOW) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
  6. I want to create a mutex and check whether it is presernt so that i dont run multiple instances of my file and other things.Can anyone help me?
  7. I want to create a sqlite database file and store some data[like name and phone number] in it and then view it.Can anyone help me
  8. As we know autoit provides a function to hide files but how to hide folders.
  9. Product Name: Windows 7 Ultimate Version: 6.1 Service Pack 1 Product Name: Microsoft Office Professional Edition 2003 Version: 11.0.5614.0 How to extract the above texts so that i get the values of product name and version through a loop
  10. I was wanting to paste a long sentence as a string but couldnt figure it out how to do the line break.I wanted this thing to be stored in $string *************************************************** Windows *************************************************** Like $string= ....... How to use that quote in $string.The exact thing>thnx in advance
  11. Here is a very good tutorial explained in detail
×
×
  • Create New...