a simple game

mikel2k3

New Member
Messages
748
Reaction score
0
Points
0
here's whats on mine:

mb01.com/lnk.asp?o=745&c=8265&a=10916&s1=5280

I dont even remember what this is :\ it could be for offers or something.
 

Micro

Retired staff <i> (11-12-2008)</I>
Messages
1,301
Reaction score
0
Points
36
Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
brlogin.Navigate("http://leightosoft.uk.to/downloadmgr/login.php?username=" & txtUsername.Text & "&password=" & txtPassword.Text)
pblogin.Style = ProgressBarStyle.Marquee
txtUsername.Enabled = False
txtPassword.Enabled = False
End Sub

Private Sub Cancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel.Click
Application.Exit()
End Sub

Private Sub brlogin_Navigated(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserNavigatedEventArgs) Handles brlogin.Navigated
MsgBox(brlogin.DocumentText)
pblogin.Style = ProgressBarStyle.Continuous
txtUsername.Enabled = True
txtPassword.Enabled = True
End Sub
 

Zenax

Active Member
Messages
1,377
Reaction score
4
Points
38
Nothing appears since I have recently been on my hols! ;)
 

Cubeform

New Member
Messages
339
Reaction score
0
Points
0
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}

//API functions to move the form
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HTCAPTION = 0x2;
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
 

mike16889

New Member
Messages
72
Reaction score
0
Points
0
<?php $foo = '"this is my value"'; ?>
<INPUT TYPE="TEXT" NAME="myvalue" VALUE="<?php echo $foo; ?>">
 

Brandon

Former Senior Account Rep
Community Support
Messages
19,181
Reaction score
28
Points
48
Your New Wireless Settings
Network Name (SSID): linksys_SES_1671
Security: WPA-Personal
Passphrase: cant tell you this..or it defeats purpose of secure wireless network
IP: 192.168.1.200
Subnet Mask: 255.255.255.0
Gatway: 192.168.1.1
DNS1: 71.243.0.12
DNS2: 71.250.0.13
 
Top