iBotBot Posted March 13, 2011 Posted March 13, 2011 Okay so i am trying to make a proxy, for learning purposes and i wanted to ask if i can take this C# script below and convert it into a auto it so i can edit it and then use it, or why i cant open it in VB can someone help me out? i am trying to make a more advance and detailed GUI expandcollapse popupnamespace AlchemyProxy { partial class GUI { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.LblOnline = new System.Windows.Forms.Label(); this.Online = new System.Windows.Forms.Label(); this.OutOnline = new System.Windows.Forms.Label(); this.SuspendLayout(); // // LblOnline // this.LblOnline.AutoSize = true; this.LblOnline.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.LblOnline.ForeColor = System.Drawing.SystemColors.ActiveCaption; this.LblOnline.Location = new System.Drawing.Point(168, -175); this.LblOnline.Name = "LblOnline"; this.LblOnline.Size = new System.Drawing.Size(110, 20); this.LblOnline.TabIndex = 12; this.LblOnline.Text = "Total Online:"; // // Online // this.Online.AutoSize = true; this.Online.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Online.ForeColor = System.Drawing.SystemColors.ActiveCaption; this.Online.Location = new System.Drawing.Point(69, 13); this.Online.Name = "Online"; this.Online.Size = new System.Drawing.Size(76, 24); this.Online.TabIndex = 13; this.Online.Text = "Online: "; // // OutOnline // this.OutOnline.AutoSize = true; this.OutOnline.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.OutOnline.ForeColor = System.Drawing.SystemColors.ActiveCaption; this.OutOnline.Location = new System.Drawing.Point(137, 14); this.OutOnline.Name = "OutOnline"; this.OutOnline.Size = new System.Drawing.Size(20, 24); this.OutOnline.TabIndex = 14; this.OutOnline.Text = "0"; // // GUI // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.ClientSize = new System.Drawing.Size(250, 51); this.Controls.Add(this.OutOnline); this.Controls.Add(this.Online); this.Controls.Add(this.LblOnline); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "GUI"; this.Text = "GUI"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label LblOnline; private System.Windows.Forms.Label Online; public System.Windows.Forms.Label OutOnline; } }
Zedna Posted March 14, 2011 Posted March 14, 2011 For creating/editing complex GUI windows in Autoit definitely use Koda Resources UDF ResourcesEx UDF AutoIt Forum Search
iBotBot Posted March 14, 2011 Author Posted March 14, 2011 I use KODA, BUTTTTT i need to know since my WHOLE bot is in C# can i use autoit also, or how i would
Zedna Posted March 14, 2011 Posted March 14, 2011 I use KODA, BUTTTTT i need to know since my WHOLE bot is in C# can i use autoit also, or how i wouldRead the sticky announcement about bots!http://www.autoitscript.com/forum/forum-2/announcement-12-game-bots-and-automation/ Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts