Jump to content

Gui Set Parent.. Slide Child.


Recommended Posts

#include <GDIPlus.au3>
#include <WindowsConstants.au3>
#include <GuiConstantsEx.au3>
$X = 300
$Y = 300
$ParenT = GUICreate("", $X, $Y, -1, -1, $WS_POPUP)
GUISetBkColor(0)
GUISetState()
$ChilD = GUICreate("", $X, $Y, $X, $Y, $WS_POPUP)
_WinAPI_SetParent($ChilD, $ParenT)
GUISetState()
$PPos = WinGetPos($ParenT)
$PosWidth= -$X /200
$PosHeight= -$Y /200
For $dr = 1 To 200
$dx = ($PosWidth * $dr)+ ($PPos[0]+$X)
$dy = ($PosHeight * $dr)+ ($PPos[1]+$Y)
WinMove($ChilD, "", $dx, $dy)
Sleep(1)
Next
While 1
$msg = GUIGetMsg()
Switch $Msg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd

I have search everything in this forum.. And i have try this script in windows Xp. Work In windows Xp..

But when i try in windows 7. slide child gui not work..

I made ​​it for 3 days more "Because i New In AutoIt" and has learn from the examples script in this forum. I think I've work out the script But when i try in windows 7 slide child gui not work. If I delete _WinAPI_SetParent($ChilD, $ParenT) slide child gui work in windows 7.. but not according to what I want.

What's wrong..??

Thank's..

Link to comment
Share on other sites

Its maybe a Bug

Try to set the parent using GUICreate

or this code _WinAPI_SetWindowLong( $ParenT,$GWL_HWNDPARENT,$ChilD)

My code:

PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.

Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners.

MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. 

Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...