-
Posts
108 -
Joined
-
Last visited
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by MachinistProgrammer
-
i just got beta a few days ag and was looking at the _WinAPI_GetGeoInfo example but when i use it it always returns ID: 0x0000000C Latitude: -25.585 Longitude: 134.504 Name: Australia ISO code: AUS which is the right country but I'm at : latitude : -28.592831 longitude :153.218569
-
Brainstorming IPC String exchange
MachinistProgrammer replied to Bluesmaster's topic in AutoIt General Help and Support
what about >MailSlot (as far as i know) it works with other languages (MSND) -
Brainstorming IPC String exchange
MachinistProgrammer replied to Bluesmaster's topic in AutoIt General Help and Support
look at these in the helpfile STDinWrite (can be read with consoleread) STDoutRead (can be written with consolewrite) -
I'm working on an auto-updater for Instant Install but first it needs to download update.ini from google drive but when I try to use InetGet with Google drive it fails is this because Google signs its own SLL licenses (as it shouldn't matter, its google and its licenses should be valid) URL:=https://doc-0c-9g-docs.googleusercontent.com/docs/securesc/llbqhuukr7g4s8jkhd1e7djnbhg8f2kp/big2brhcl0ucqivnt35bvsum5sakigq0/1384740000000/16425202352266026849/16425202352266026849/0B2MbinxQCjBaOFJkdW04UnA0QTg?h=16653014193614665626&e=download
-
Added registry modifier
-
Although it came out 1 day ago there is an Update InstantInstall ToDo 1. Registry modifier 2. Registry Checking 3. OS Compatibility options 4. EXE Details options Download Link Sorry Still no updater Channel log version 0.0.0.1 Initial release version 0.0.0.2 Added Registry modifyer minor Bug fixes p.s can i get some help making an Automatic updater
-
Oh. i didn't know how hostile that sounded until i reread my post
-
Could i please get a reply on my previous Question? thank you. sorry about my previous post
-
problem with layering
MachinistProgrammer replied to MachinistProgrammer's topic in AutoIt GUI Help and Support
what disabling the label dose is make the buttons work because for some strange reason the z-layer for viewing is different than the mouses z-layer so if the label goes before the buttons and is disabled it should work -
problem with layering
MachinistProgrammer replied to MachinistProgrammer's topic in AutoIt GUI Help and Support
I wanted a gray box behind the buttons not a separator so now that i read Kaotkbliss post more closley this is the final answer #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Include <GuiButton.au3> $product = "test" $i1 = GUICreate($product&" Installer",495,360,-1,-1,-1,-1) GUISetBkColor(0xFFFFFF) GUICtrlCreatePic("resize\",0,0,160,310,-1,-1) GUICtrlCreateLabel("Welcome to the "&$product&" Instant Installer",180,20,260,50,-1,-1) GUICtrlSetFont(-1,15,400,0,"MS Sans Serif") GUICtrlCreateLabel("",0,310,495,50,-1,131072) GUICtrlSetState(-1,$GUI_DISABLE) GUICtrlSetBkColor(-1,0xF0F0F0) $n = GUICtrlCreateButton("Next >",325,320,75,25,-1,-1) $c = GUICtrlCreateButton("Cancel",410,320,75,25,-1,-1) GUICtrlCreateLabel("Instant Install wil guide you through the setup of "&$product&"."&@crlf&""&@crlf&"It is recommended that you close all other applications before starting setup. This will make it possable to update relevent system files without rebooting your computer."&@crlf&""&@crlf&"Click Next to continue.",180,100,250,120,-1,-1) GUICtrlSetBkColor(-1,"-2") GUISetState(@SW_SHOW,$i1) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd -
problem with layering
MachinistProgrammer replied to MachinistProgrammer's topic in AutoIt GUI Help and Support
no its not the picture over the button its the label bu i found the solution ; -- Created with ISN Form Studio 2 for ISN AutoIt Studio -- ; #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Include <GuiButton.au3> $product = "test" $i1 = GUICreate($product&" Installer",495,360,-1,-1,-1,-1) GUISetBkColor(0xFFFFFF) GUICtrlCreatePic("resize\",0,0,160,310,-1,-1) GUICtrlCreateLabel("Welcome to the "&$product&" Instant Installer",180,20,260,50,-1,-1) GUICtrlSetFont(-1,15,400,0,"MS Sans Serif") $n = GUICtrlCreateButton("Next >",325,320,75,25,-1,-1) $c = GUICtrlCreateButton("Cancel",410,320,75,25,-1,-1) GUICtrlCreateLabel("",0,310,495,50,-1,131072) GUICtrlSetBkColor(-1,0xF0F0F0) GUICtrlCreateLabel("Instant Install wil guide you through the setup of "&$product&"."&@crlf&""&@crlf&"It is recommended that you close all other applications before starting setup. This will make it possable to update relevent system files without rebooting your computer."&@crlf&""&@crlf&"Click Next to continue.",180,100,250,120,-1,-1) GUICtrlSetBkColor(-1,"-2") GUISetState(@SW_SHOW,$i1) ControlFocus($i1,"",GUICtrlGetHandle($n)) ControlFocus($i1,"",GUICtrlGetHandle($c)) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE,$c Exit EndSwitch WEnd -
I'm working on an autoit built generic installer. how can i get the buttons to work (i know there is probably 1000 better ways to do it #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Include <GuiButton.au3> $product = "test" $i1 = GUICreate($product&" Installer",495,360,-1,-1,-1,-1) GUISetBkColor(0xFFFFFF) GUICtrlCreatePic("resize\",0,0,160,310,-1,-1) GUICtrlCreateLabel("Welcome to the "&$product&" Instant Installer",180,20,260,50,-1,-1) GUICtrlSetFont(-1,15,400,0,"MS Sans Serif") GUICtrlCreateLabel("",0,310,495,50,-1,131072) GUICtrlSetBkColor(-1,0xF0F0F0) $n = GUICtrlCreateButton("Next >",325,320,75,25,-1,-1) $c = GUICtrlCreateButton("Cancel",410,320,75,25,-1,-1) GUICtrlCreateLabel("Instant Install wil guide you through the setup of "&$product&"."&@crlf&""&@crlf&"It is recommended that you close all other applications before starting setup. This will make it possable to update relevent system files without rebooting your computer."&@crlf&""&@crlf&"Click Next to continue.",180,100,250,120,-1,-1) GUICtrlSetBkColor(-1,"-2") GUISetState(@SW_SHOW,$i1) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd and if i do it this way the buttons don't appear ; -- Created with ISN Form Studio 2 for ISN AutoIt Studio -- ; #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Include <GuiButton.au3> $product = "test" $i1 = GUICreate($product&" Installer",495,360,-1,-1,-1,-1) GUISetBkColor(0xFFFFFF) GUICtrlCreatePic("resize\",0,0,160,310,-1,-1) GUICtrlCreateLabel("Welcome to the "&$product&" Instant Installer",180,20,260,50,-1,-1) GUICtrlSetFont(-1,15,400,0,"MS Sans Serif") $n = GUICtrlCreateButton("Next >",325,320,75,25,-1,-1) $c = GUICtrlCreateButton("Cancel",410,320,75,25,-1,-1) GUICtrlCreateLabel("",0,310,495,50,-1,131072) GUICtrlSetBkColor(-1,0xF0F0F0) GUICtrlCreateLabel("Instant Install wil guide you through the setup of "&$product&"."&@crlf&""&@crlf&"It is recommended that you close all other applications before starting setup. This will make it possable to update relevent system files without rebooting your computer."&@crlf&""&@crlf&"Click Next to continue.",180,100,250,120,-1,-1) GUICtrlSetBkColor(-1,"-2") GUISetState(@SW_SHOW,$i1) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
-
a couple of things to say here first i found an array overflow when i open a file secondly is it OK if i modify the source to work with my revised version of of CodeQ thirdly i know it's a hassle to do this but some build in error checking for arrays would go along wa to making a 'Real' replacement for Koda but all in all without the errors it is better than koda and finally i downloaded the source but where can i find the Winapi stuff because i just installed Beta and it says that winapidiag.au3 is missing
-
GUI/Tray Menu with icons and colors
MachinistProgrammer replied to Holger's topic in AutoIt Example Scripts
Never mind it was just an old version of Internet explorer caulsing trouble (so logically i got Firefox) -
GUI/Tray Menu with icons and colors
MachinistProgrammer replied to Holger's topic in AutoIt Example Scripts
the download file is corrupt -
i was going to make a autoit debugger without making it rewrite the the script with a whowl bunch of consolewrite()'s because im completly rewriting CodeQ as it wasn't very good & had bugs now what im asking is there a way to read variable names & values from autoit script's (also it would help alot for a plugin framework that would work compiled)
-
Window in window
MachinistProgrammer replied to MachinistProgrammer's topic in AutoIt GUI Help and Support
thanks i didn't know about that -
i don't know if its possable but is there a way to embed a window in a window using winapi or somthing ?
-
is it possable to pull a backspace event? also how do you set it so that if you use #include the angle brackets act like strings and dose autocomplete have to be done through autoit. isn't their a way to load .api files
-
is my computer fried
MachinistProgrammer replied to MachinistProgrammer's topic in AutoIt General Help and Support
i tried example 2 it sayd no disk a couple of times then the gui poped up and seemed to be working until i exited and it said application has to close and i get the -1073741819 error