
daveed
Members-
Posts
17 -
Joined
-
Last visited
Profile Information
-
Location
Austrailia
daveed's Achievements

Seeker (1/7)
0
Reputation
-
Thanks guys! For the help ive got a bit of a better understanding now. Cheers!
-
Hallow, How do you create a popup gui with only a close button in the title bar and no left icon and menu. i tryed BitOr($WS_CAPTION, $WS_SYSMENU+$WS_EX_TOOLWINDOW) and BitOr($WS_CAPTION, $WS_EX_TOOLWINDOW)
-
Dose any one know a way to get the text thats in a select option dropdown from the web browser where the select box is being populated by xmlHttpRequest? i seen text getting software but there $500 to $1500.
-
Hi, I have a Input "GUICtrlCreateInput" thats a set lenght. how can you get a tooltip to display showing whats in the input. or only show a tooltip when the charaters exceds the lenght of the input .
-
How do you hide the taskbar menu on mimimize so it only displays in the icon taskbar mananger? Thanks in advance
-
How do you prompt a msgbox before exiting the application like "Close Application" Yes - No
-
Thanks Eltorro thak worked for me , I am trying to replace attribute value for "default" <SystemProperty name="jetty.port" default="8081" /> Using this: _XMLReplaceChild('/Configure/Call/Arg/New/Set/SystemProperty[@name="jetty.port"]', "SystemProperty") Just clears clears both attributes and values <SystemProperty name="" default="" /> How ca i replace the following value? <SystemProperty name="jetty.port" default="xxxxx" /> Regards, daveed
-
Hi, I am trying to get a attribute so then the i can see what the defualt port. Once i can get that value i then can add it to a text box an change it like in $var = _XMLGetAttrib('/tv/channel[@id="01"]/icon',"src") for <SystemProperty name="jetty.port" default="8081" /> default="8081" could you show what i need to call here is the xml; --------------------------------------- <?xml version="1.0" ?> <!DOCTYPE Configure (View Source for full doctype...)> - <!-- =============================================================== --> - <!-- Configure the Jetty Server --> - <!-- =============================================================== --> - <Configure id="Server" class="org.mortbay.jetty.Server"> - <!-- =========================================================== --> - <!-- Server Thread Pool --> - <!-- =========================================================== --> - <Set name="ThreadPool"> - <New class="org.mortbay.thread.BoundedThreadPool"> <Set name="minThreads">10</Set> <Set name="lowThreads">50</Set> <Set name="maxThreads">250</Set> </New> </Set> - <!-- =========================================================== --> - <!-- Set connectors --> - <!-- =========================================================== --> - <!-- One of each type! --> - <!-- =========================================================== --> - <!-- Use this connector for many frequently idle connections and for threadless continuations. --> - <Call name="addConnector"> - <Arg> - <New class="org.mortbay.jetty.nio.SelectChannelConnector"> - <Set name="port"> <SystemProperty name="jetty.port" default="8081" /> </Set> <Set name="maxIdleTime">30000</Set> <Set name="Acceptors">2</Set> <Set name="confidentialPort">8443</Set> </New> </Arg> </Call> - <!-- =========================================================== --> - <!-- Set handler Collection Structure --> - <!-- =========================================================== --> - <Set name="handler"> - <New id="handlers" class="org.mortbay.jetty.handler.HandlerCollection"> - <Set name="handlers"> - <Array type="org.mortbay.jetty.Handler"> - <Item> <New id="contexts" class="org.mortbay.jetty.handler.ContextHandlerCollection" /> </Item> - <Item> <New id="defaultHandler" class="org.mortbay.jetty.handler.DefaultHandler" /> </Item> - <Item> <New id="requestLog" class="org.mortbay.jetty.handler.RequestLogHandler" /> </Item> </Array> </Set> </New> </Set> - <New id="TestContext" class="org.mortbay.jetty.webapp.WebAppContext"> - <Arg> <Ref id="contexts" /> </Arg> - <Arg> <SystemProperty name="jetty.home" default="." /> /wwwroot </Arg> <Arg>/</Arg> </New> - <!-- =========================================================== --> - <!-- Discover contexts from webapps directory --> - <!-- =========================================================== --> - <Call class="org.mortbay.jetty.webapp.WebAppContext" name="addWebApplications"> - <Arg> <Ref id="contexts" /> </Arg> - <Arg> <SystemProperty name="jetty.home" default="." /> /webapps </Arg> <Arg /> <Arg type="boolean">True</Arg> - <!-- extract --> <Arg type="boolean">False</Arg> - <!-- parent priority class loading --> </Call> - <!-- =========================================================== --> - <!-- Configure Request Log --> - <!-- =========================================================== --> - <Ref id="requestLog"> - <Set name="requestLog"> - <New id="requestLogImpl" class="org.mortbay.jetty.NCSARequestLog"> - <Arg> <SystemProperty name="jetty.logs" default="./jetty/logs" /> /yyyy_mm_dd.request.log </Arg> <Set name="retainDays">90</Set> <Set name="append">true</Set> <Set name="extended">false</Set> <Set name="LogTimeZone">GMT</Set> </New> </Set> </Ref> - <!-- =========================================================== --> - <!-- extra options --> - <!-- =========================================================== --> <Set name="stopAtShutdown">true</Set> - <!-- ensure/prevent Server: header being sent to browsers --> <Set name="sendServerVersion">true</Set> </Configure>
-
Very good, And it dose not flicker Thanks again
-
How do you make the form so that only the width can be resized like in Koda Thanks in advance
-
How do you only allow numeric keydown on a certan controlID like a InputBox?
-
to easy, Thanks
-
How do you update the button lable on click. i tryed the example in help: _GUICtrlIpAddressGet and i am using $btn_status = GUICtrlCreateButton("Started", 10,250, 100, 25) but it only changes once and dose not update the lable. Is there a nother method other than GUICtrlCreateButton to change the text of the button
-
hi, Question 1: how can you pack extar resources in to the AutoIt compler like icons. Question 2: Say i have a exe and i have added exter icons to the exe file with resource hackcker, I would like to refferecne them out of the exe, a bit like the below example but from contained within the exe? TraySetIcon ( ???>@ScriptDir & "\some.ico" )
-
concatenate var textinput into run()
daveed replied to daveed's topic in AutoIt GUI Help and Support
Thanks, guys for the help and explaining it