Jump to content

Search the Community

Showing results for tags 'Can it be done?'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 2 results

  1. Hello all, I'm starting to learn the immense functionality of the .dll file. I'm using at least one custom .dll file in my new program that contains all of the images and icons used within. It's a very nice way to quickly and easily package everything into one nice, neat file. My question is, my program actually has three separate .exe files it can call. These programs get user input and write to an .ini file for the main program to read. What I'd like to do is compile these three separate .exe files (written and compiled in AutoIt) into a .dll file (I have completed this step) and call the .exe directly from the .dll file when running the main program. This will help save space and clutter in the install directory. Can this be done? I've tried Run("RunDLL32.exe C:\SeparateExes.dll,test") Where "test.exe" is the name of the first program. Thanks for your help! -Fett
  2. Hello all, I feel bad, second new topic in two days. >.< I've got a tab control with tab items. I've set the style of the tab control to display the tab items on the bottom of the tab control. Functionally, this works just fine. However, the tab item is display in such a way that it looks "cut off" and like it belongs on top of the control. The below replication code will show you what I mean. Note: I am using the _GUICtrlTab functions, not the standard functions used in the code below. However, the demonstrated effect is identical. #include <GUIConstantsEx.au3> #include <TabConstants.au3> #include <WindowsConstants.au3> Opt("GUIOnEventMode", 1) #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 633, 447, 192, 124) GUISetOnEvent($GUI_EVENT_CLOSE, "Form1Close") $Tab1 = GUICtrlCreateTab(56, 56, 289, 225, $TCS_BOTTOM) GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) $TabSheet1 = GUICtrlCreateTabItem("TabSheet1") GUICtrlCreateTabItem("") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 Sleep(100) WEnd Func Form1Close() Exit EndFunc Does anyone know if it's possible to invert the graphic of the tab item control to make it look like it belongs on bottom? For an example of what I mean, open an Excel file and note the tabs across the bottom. I've scoured the forums and the help file and can't find a way to do it. Any ideas would be very much appreciated! Thanks, Fett
×
×
  • Create New...