Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~953 People Reached
Favorite Forums
Favorite Tags
Member Avatar for eawedat

hey all, I have this code in VB.NET : Having: 1 TextBox 1 Button with this code: Public Class Form1 Dim m As String() Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click m = TextBox1.Text.Split(Environment.NewLine) For Each k As String In m 'MessageBox.Show(k) WebBrowser1.Navigate(k) Next End …

Member Avatar for Oxiegen
0
242
Member Avatar for eawedat

hey all,, I have this picture to be more clear: [URL="http://img846.imageshack.us/img846/5996/95028490.png"]http://img846.imageshack.us/img846/5996/95028490.png[/URL] My idea is when I paste (ctrl+v) for example this number : 4111111111111111 it would automatically paste them in textboxes one by one in order! so txtBox1 will contain : 4111 txtBox2 : 1111 txtBox3 : 1111 txtBox4 : …

Member Avatar for GeekByChoiCe
0
579
Member Avatar for eawedat

hey all I have these lines [CODE] create table Singers(SingerName varchar(30),picture text,id int primary key auto_increment); create table Songs(id int primary key auto_increment,sid int,foreign key(sid) references Singers(id) ON DELETE CASCADE); [/CODE] In situation I want to delete a Singer for example who has the id->1 from Singer's table automaticaly to …

Member Avatar for eawedat
0
132