Jump to content

FinalVersion

Active Members
  • Posts

    589
  • Joined

  • Last visited

Profile Information

  • Member Title
    0 ^ 1
  • Location
    Geosynchronous Orbit

Recent Profile Visitors

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

FinalVersion's Achievements

Universalist

Universalist (7/7)

3

Reputation

  1. Well _IsPressed is GetAsyncKeyState wrapped, so just use that.
  2. Can't wait for Mode 4.
  3. Blame that on Microsoft
  4. Well AutoIt doesn't support OOP, or Multiple threads, and the list goes on, pretty clear cut. Think I'll just add those 2 languages to my resume
  5. What's the point of this?
  6. @WeiHeXie Complaining about errors will fix them, everyone on this forum is dedicated to fixing your errors.
  7. You're not serious are you? Most of those errors are simply fixed. We're not your personal Google. And as Mat said, both use MFC, so why even go near they before you can even compile a Hello World program.
  8. How are open source programs resources? Your logic has so many flaws. And if you actually want to learn C++, and make an effort You should read this. Directly from the page I linked:
  9. I like how you added it to the context menu, rarely see that, if ever.
  10. Was wondering how long it would take for a cat picture.
  11. Can I have a function call create a gui, and the gui does what it's suppose to. But can I still be performing other things? The only way I can think of this being done is multiple threads, which I don't know if it is possible in Autoit.
  12. The following code lists all files & folders in the current directory. I was thinking of creating a counter, increase it every time a tree view item is added. Then in a for loop, check each item with a IsFolder() function, but there isn't a function that I'm aware of that does that. #include <GUIConstantsEx.au3> #include <TreeViewConstants.au3> #include <WindowsConstants.au3> Local $frmMain = GUICreate("Tree View", 234, 363, -1, -1) Local $tMain = GUICtrlCreateTreeView(0, 0, 250, 380) $hFiles = FileFindFirstFile("*.*") If $hFiles = -1 Then Exit While 1 $cFile = FileFindNextFile($hFiles) If @error Then ExitLoop GUICtrlCreateTreeViewItem($cFile, $tMain) WEnd FileClose($hFiles) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
  13. Wow thanks alot, I almost didn't notice your change.
×
×
  • Create New...