Jump to content

Help with IE Builder please?(not helped yet)


Recommended Posts

When i try to open the IE builder if pops this out:

Line 53 (File "H:\Documents and Settings\Owner\My Documents\Dickson's\Hacks\Autoit_123\IE_Builder\IE-library_v2.0.au3"):

$VLabel = GUICtrlCreateLabel("IE-Builder View", 10, 140, 140, 43, $SS_CENTER)

$VLabel = GUICtrlCreateLabel("IE-Builder View", 10, 140, 140, 43, ^ ERROR

Error: Variable used without being declared.

Edited by ajdicky
Link to comment
Share on other sites

2,

simplely, "Variable used without being declared", in your full program, please declared the variable before using it,

for an example

#include <string.au3>
$String = _HexToString($Hex)
MsgBox(0, "Hex", "Original Hex: " & $Hex & @LF & " String: " & $String)
$Hex = "12"

=> you'll get an "Variable used without being declared" message and to fix this, put the $hex at the second line,after #include <string.au3>

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

Link to comment
Share on other sites

I'm sorry i'm still new to this please help me do it?or tell me step by step how to?thanks!

The Problem line is 53

50:#region Parent GUI

51:$GUI = GUICreate(" IE-Builder " & $ver, @DesktopWidth - 5, @DesktopHeight - 30, 0, 0);, $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_OVERLAPPEDWINDOW + $WS_MAXIMIZE) ;, $WS_EX_TOPMOST )

52:

53:$VLabel = GUICtrlCreateLabel("IE-Builder View", 10, 140, 140, 43, $SS_CENTER)

54:GUICtrlSetFont(-1, 16, 700, 4, "MS Sans Serif")

55:$VAbout = GUICtrlCreateButton("", 15, 60, 40, 30, $BS_ICON)

56:$VImg = GUICtrlCreateButton("", 105, 60, 40, 30, $BS_ICON)

57:$VFavr = GUICtrlCreateButton("", 60, 60, 40, 30, $BS_ICON)

58:$VBack = GUICtrlCreateButton("Back", 15, 20, 40, 30, $BS_BITMAP)

59:$VForward = GUICtrlCreateButton("Forward", 60, 20, 40, 30, $BS_BITMAP)

60:$VRefresh = GUICtrlCreateButton("Refresh", 105, 20, 40, 30, $BS_BITMAP)

61:$VGo = GUICtrlCreateButton("GO", 800, 20, 50, 30, $BS_BITMAP)

62:$VMnmz = GUICtrlCreateButton("Min", 855, 20, 50, 30, $BS_ICON)

63:$VExit = GUICtrlCreateButton("Exit", 910, 20, 50, 30, $BS_ICON)

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...