
MyName
Active Members-
Posts
43 -
Joined
-
Last visited
Everything posted by MyName
-
any one ?
-
I am currently working on automating testing an MDI application, I need help for following Any way to find Number of child windows open in MDI applicationOpen child windows are in Cascade windowChecking all child windows are horizontally/ verticallyAll Child windows are fit in with in MDI control sizeIf anyone having UDF/Sample Script Please let me know
-
Try This #Include <GuiComboBox.au3> $var = _GUICtrlComboBox_GetEditText($LangCombo)
-
Krillr 1st If $msg = $Button1 Then ;eXit Function ? EndIf 2nd Case GUICtrlRead($Data1) = "Walk around" $Event = "" EndSelect It will work
-
Thank Psalty
-
Try Func _ClipEmpty() Local $Success = 0 DllCall('user32.dll', 'int', 'OpenClipboard', 'hwnd', 0) IF @error = 0 THEN DllCall('user32.dll', 'int', 'EmptyClipboard') IF @error = 0 THEN $Success = 1 DllCall('user32.dll', 'int', 'CloseClipboard') IF $Success THEN Return 1 ENDIF DllCall('user32.dll', 'int', 'CloseClipboard') Return 0 EndFunc
-
Sample Format <?xml version="1.0" encoding="ISO-8859-1"?> <breakfast_menu> <food> <name>Belgian Waffles</name> <price>$5.95</price> <description>two of our famous Belgian Waffles with plenty of real maple syrup</description> <calories>650</calories> </food> <food> <name>Strawberry Belgian Waffles</name> <price>$7.95</price> <description>light Belgian waffles covered with strawberries and whipped cream</description> <calories>900</calories> </food> <food> <name>Berry-Berry Belgian Waffles</name> <price>$8.95</price> <description>light Belgian waffles covered with an assortment of fresh berries and whipped cream</description> <calories>900</calories> </food> </breakfast_menu> Sample XSL <?xml version="1.0" encoding="ISO-8859-1"?> <html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml"> <body style="font-family:Arial;font-size:12pt;background-color:#EEEEEE"> <xsl:for-each select="breakfast_menu/food"> <div style="background-color:teal;color:white;padding:4px"> <span style="font-weight:bold"><xsl:value-of select="name"/></span> - <xsl:value-of select="price"/> </div> <div style="margin-left:20px;margin-bottom:1em;font-size:10pt"> <xsl:value-of select="description"/> <span style="font-style:italic"> <xsl:value-of select="calories"/> (calories per serving) </span> </div> </xsl:for-each> </body> </html> I have two questions. 1. This Topic is not only with XML more then XSL/CSS File Support. 2. How to move this topic support ? Thanks in advance
-
Hello I was created XML file with help of _XMLDomWrapper.au3. now i want display the My XML file with help of XSL or CSS file how to display that any one please help me thanks <Summary> - <SN_1> <SName>t116C</SName> <StartTime>12/16/2008 16:52:59</StartTime> <T>11</> <P>11</P> <Te>Passed</Te> <EndTime>12/16/2008 16:50:39</EndTime> </SN_1> - <SN_2> <SName>t116C</SName> <StartTime>12/16/2008 16:52:59</StartTime> <T>11</> <P>11</P> <Te>Passed</Te> <EndTime>12/16/2008 16:53:24</EndTime> </SN_2> - </Summary>
-
i already told to you read in help file. OK since your are Newbie i will help you find out in 'C:\Program Files\AutoIt3\Examples\Helpfile\GUICtrlCreateProgress.au3' help file read this help help find use $progressbar2 in your code
-
Read in help file user this sample code UserExe Name1 Name2 Name3 500 include <GUIConstantsEx.au3> #include <ProgressConstants.au3> #include <WindowsConstants.au3> Dim $MaxProc $Form1 = GUICreate("Sample Progress Bar", 421, 125) $Progress1 = GUICtrlCreateProgress(25, 25, 350, 20) $Button1 = GUICtrlCreateButton("OK", 400, 350) $Label1 = GuiCtrlCreateLabel("Label 1",10,64,150,20) $Label2 = GuiCtrlCreateLabel("Label 2", 10,84,150,20) $Label3 = GuiCtrlCreateLabel("Label 3",10,104,150,20) GUISetState(@SW_SHOW) if $CmdLine[0] > 0 then GUICtrlSetData($Label1, $CmdLine[1]) GUICtrlSetData($Label2, $CmdLine[2]) GUICtrlSetData($Label3, $CmdLine[3]) $MaxProc = $CmdLine[4] Else $MaxProc = 100 endif For $i = 1 to $MaxProc GUICtrlSetData($Progress1, $i) Sleep(50) Next Do Until GUIGetMsg() = $GUI_EVENT_CLOSE
-
It nothing just java text display with background text. example : if u r sending mail with big size of attachment file, same time your net connection little slow during sending message with yellow color background will change to " Still Working..."
-
how to get web page panel text in autoit. In Gmail he have some panel text i.e. " Sending..." & "Loading..." message @ top screen
-
hi how to get full text from MFC [CLASS:AfxFrameOrView42; INSTANCE:2]. AutoIt v3 Window info will display the full text under visible text tag. ControlGetText & _GUICtrlTreeView_GetText not getting text. if any other way to read full text in "[CLASS:AfxFrameOrView42; INSTANCE:2]"
-
How to Get button states (Enable or Disable) of my VC++ & C# application GUI. i tryed _GUICtrlButton_Enable function is not working ! any other way to do this ....
-
Unable read full in Status Bar Text
MyName replied to MyName's topic in AutoIt General Help and Support
i understand that GUICtrlRead will support only (Checkbox,Radio,Combo,List,Input, Edit,Button,Date,Progress,Slider,Tab,Menu,TreeView,ListView) StatusBar ? Are you done before ? if it yes plese post script ! -
Hi i am unable to Read the Full text in status bar CODE $Hnd = ControlGetHandle("<Windows Title>", "", "msctls_statusbar321") ; Get Tag Hangle $MyText = _GUICtrlStatusBar_GetText ($Hnd , 1) This MyText is having only 7 char !
-
thanks I have one more ? if hWnd Id different from each version my application ?
-
More then One Treeview Controler
MyName replied to MyName's topic in AutoIt General Help and Support
Any other better way to do this 1st One $hWnd = ControlGetHandle("<Winsows Title>","","[CLASS:SysTreeView32; INSTANCE:1]") $hChildNetwork = _GUICtrlTreeView_GetFirstItem($hWnd) 2nd One $hWnd = ControlGetHandle("<Winsows Title>","","[CLASS:SysTreeView32; INSTANCE:2]") $hChildNetwork = _GUICtrlTreeView_GetFirstItem($hWnd) -
Hi In One of Application pop-up windows with out any title and doing some action how no that pop-up is active or not Summary information of .... >>>> Window <<<< Title: Class: #32770 Position: 434, 349 Size: 284, 139 Style: 0x940000C4 ExStyle: 0x00010101 Handle: 0x00040D78 >>>> Control <<<< Class: Instance: ClassnameNN: Advanced (Class): ID: Text: Position: Size: ControlClick Coords: Style: ExStyle: Handle: 0x00040D9E >>>> Mouse <<<< Position: 65, 136 Cursor ID: 0 Color: 0xD4D0C8 >>>> StatusBar <<<< >>>> Visible Text <<<< Downloading 'TEST 1.0' to Implementing downloaded application... Cancel >>>> Hidden Text <<<<
-
i got error in XP PC Error: Array variable has incorrect number of subscripts or subscript dimension range exceeded.
-
More then One Treeview Controler
MyName replied to MyName's topic in AutoIt General Help and Support
Please help me recording -
More then One Treeview Controler
MyName replied to MyName's topic in AutoIt General Help and Support
any one -
How to more on treeview in my VC++ application. How to get the ControlGetHandle for Each? How to do that?
-
add #include<Array.au3>