Jump to content

Recommended Posts

Posted

is it possible to make something like this:

Posted Image

because i dont know how to make the [white screens] and the images before the buttons..

[quote name='AceLoc']I gots new sunglasses there cool.[/quote]

Posted

Well if you're worried about d2jsp expiring... don't. I've had it before you don't actually have to but a registration key. Although across the diablo screen it will say TRIAL VERSION every time you use it, it won't actually expire. If, on the other hand you are just trying to get better at making GUI's by trying to mimic d2jsp, then I'm sure someone will come along and help you out soon enough.

- Dan [Website]

Posted

Do a search for Koda. Koda is your friend.

#include <GUIConstants.au3>
; == GUI generated with Koda ==);
$Form1 = GUICreate("autod2jsp wannabe", 720, 305, 186, 114)
$Button1 = GUICtrlCreateButton("Add", 8, 0, 49, 25, 0)
$Button2 = GUICtrlCreateButton("Edit", 56, 0, 49, 25, 0)
$Button3 = GUICtrlCreateButton("Delete", 104, 0, 49, 25, 0)
$Button4 = GUICtrlCreateButton("Copy", 152, 0, 49, 25, 0)
$Button5 = GUICtrlCreateButton("Save", 200, 0, 49, 25, 0)

$Button6 = GUICtrlCreateButton("Clear Log", 264, 0, 73, 25, 0)
$Button7 = GUICtrlCreateButton("Save Log", 336, 0, 73, 25, 0)

$Button8 = GUICtrlCreateButton("Start", 416, 0, 49, 25, 0)
$Button9 = GUICtrlCreateButton("Stop", 464, 0, 49, 25, 0)
$Button10 = GUICtrlCreateButton("Pause", 512, 0, 49, 25, 0)
$Button11 = GUICtrlCreateButton("Update", 560, 0, 49, 25, 0)
$Button12 = GUICtrlCreateButton("Kill", 608, 0, 49, 25, 0)

$ListView1 = GUICtrlCreateListView("Setting Name|Status|Location|Runs|Failed|Total Time|Ping|Restarts", 8, 32, 705, 153)
$ListView2 = GUICtrlCreateListView("Log Date|Setting Name|Log", 8, 192, 705, 105)
GUISetState(@SW_SHOW)
While 1
    $msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
    Case Else
        ;;;;;;;
    EndSelect
WEnd

[font="Fixedsys"][list][*]All of my AutoIt Example Scripts[*]http://saneasylum.com[/list][/font]

Posted

woow that looks great.. but how to get images before the buttons? (=

[quote name='AceLoc']I gots new sunglasses there cool.[/quote]

Posted (edited)

but i really suck at GUI's, and i need exact the same.. the same forms// image // size everything, i will make the rest myself :P

Well if you're worried about d2jsp expiring... don't. I've had it before you don't actually have to but a registration key. Although across the diablo screen it will say TRIAL VERSION every time you use it, it won't actually expire. If, on the other hand you are just trying to get better at making GUI's by trying to mimic d2jsp, then I'm sure someone will come along and help you out soon enough.

.....read my question better next time :nuke:! Edited by aceloc

[quote name='AceLoc']I gots new sunglasses there cool.[/quote]

Posted

@Valuater, thanks for the links. I got sidetrack on the first one though. Valik's comments are for interesting

reading as to why the core of AutoIt needs to remain small. Its sort of an insight into some aspect of programming. Thanks. Good links!

ViM

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
×
×
  • Create New...