Jump to content

it is possible?


erikson
 Share

Recommended Posts

hi codemasters!

i whant to make a program that display a gui window with some choose menu, and if i choose something to send a message to a server computer that displai a simple gui window with the choose i make.

is it possible something like this?

if yes give me a hint

Link to comment
Share on other sites

hi codemasters!

i whant to make a program that display a gui window with some choose menu, and if i choose something to send a message to a server computer that displai a simple gui window with the choose i make.

is it possible something like this?

Yes.

if yes give me a hint

Do exactly what you described. Create a GUI, send the user data to another computer via TCP and display that data on the other computer!

__________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *

Link to comment
Share on other sites

how?

:)

When in Scite click on tools then GUIBuilder for the GUI... heres an example

#region --- GuiBuilder code Start ---
; Script generated by AutoBuilder 0.6 Prototype

#include <GuiConstants.au3>

GuiCreate("MyGUI", 314, 212,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS))

$Button_1 = GuiCtrlCreateButton("Button to do whatever", 50, 30, 220, 130)

GuiSetState()
While 1
    $msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
    Case $msg = $Button_1
        MsgBox(0, "Tada", "You pushed the button")
    Case Else
        ;;;
    EndSelect
WEnd
Exit
#endregion --- GuiBuilder generated code End ---

As for the TCP... I haven't done that so I couldn't give an example but the help file has very good examples. Also I'm sure the forum has a bunch of good tcp scripts that you could look at for ideas.

EDIT: And apparently happy b-day to i542 And since none of the emotions fit right heres a ninja...cause they're cool :D

Edited by someone
While ProcessExists('Andrews bad day.exe')
	BlockInput(1)
	SoundPlay('Music.wav')
	SoundSetWaveVolume('Louder')
WEnd
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...