Jump to content

DicatoroftheUSA

Active Members
  • Posts

    537
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

DicatoroftheUSA's Achievements

  1. Why would you use $ws_child if it is not a child.
  2. I believe it just uses the default handler specified by windows shell. So you should be able to open applications with it, I don't know if its ideal or not, just something to try.
  3. Change the working directory away from C:windows. Try pointing it to the CamRecorder program directory.
  4. From the help file " $WS_POPUP 0x80000000 Creates a pop-up window. This style cannot be used with the WS_CHILD style. $WS_CHILD 0x40000000 Creates a child window. A window with this style cannot have a menu bar. This style cannot be used with the WS_POPUP style.
  5. Best thing to do is check how your array is populated and avoid putting the data in it. Checkout stringregexp in a "for loop". It is in the help file. For the array you can use _ArrayDelete
  6. Crap wrong forum, it should be in general help. I do not know how to delete or move it.
  7. Is it possible to write extended properties to a file? I know how to get properties via shell.application getdetailsof eg: The root problem is outlooks msg files "from address", "date received"... are blank in explorer. The scenario I need to solve is some some people save msg files from their outlook. However it does not update the msg file properties from the emails header. They would like the files to be sortable by the header details in explorer. My goal is to monitor their repository, when a new msg file is added, it reads the header, and adds the data to the files extended properties. When I Google for a script that does this already, I am coming up empty. Maybe I am using the wrong terminology?
  8. Thanks you. That was too easy, now I feel dumb. Time to take a break.
  9. When I use the style $es_readonly, it does not seem to work with $es_multiline. What am I doing wrong? #include<guiconstants.au3> $Form1 = GUICreate("test", 615, 438, 192, 124) $GUI_input = GUICtrlCreateInput("test"&@CRLF&"test2"&@CRLF&"why does this work", 96, 30, 50, 75,$ES_MULTILINE ) $GUI_input2 = GUICtrlCreateInput("test"&@CRLF&"test2"&@CRLF&"But this does not", 96, 200, 50, 75,bitor($ES_MULTILINE,$es_readonly) ) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
  10. I have had odd problems with _ftp_fileput especially with large files, try "_ftp_progressupload" instead.
  11. After assigning your arrays, test them with "if issarray($YourArray)" and "_arraydisplay($YourArray)"
  12. If your error is your keyboard exploding and your keys are getting stuck in your brain. It is because you made the hamster god angry. If you want a better answer your would be better off not making people you want to help you play guessing games. But when using arrays, makes sure to use "if isarray" and use _arraydisplay to check if its contents are what you expect.
×
×
  • Create New...