Thanks!: Solovb over 30,000 visits Posted by Elisha in News on 06 26th, 2009 | 13 comments The fact that the reach of the Internet often exceeds our expectations. I have visited from countries that do not even know existed. The visits came from 90 countries! Algeria Andorra Argentina Australia Austria Belarus Belgium Bolivia Bosnia and Herzegovina Brazil Bulgaria Canada ... SQL Delete Posted by Elisha Database on 06 22nd, 2009 | 1 comment Definition DELETE statement removes rows from a table or view. DELETE [FROM] [FROM [, ... n]] [WHERE {] Description FROM clauses: optional keyword can be used between the DELETE keyword and the target (table, view, or rowset) FROM <table> : Specifies a ... SQL Update Posted by Elisha Database on 06 22nd, 2009 | 4 comments UPDATE Definition Change the data in a table or view. UPDATE object SET {column name = {expression | DEFAULT | NULL} | @ variable = expression | @ variable = column = expression} [, ... n] [FROM {} [, ... n]] [WHERE {} ] Description of the SET clauses: Specifies the ... SQL Insert Posted by Elisha Database on 06 22nd, 2009 | 4 comments Definition INSERT statement adds a new row or rows to a table or view. INSERT [INTO] {object [(lista_columnas)] {VALUES (({DEFAULT | NULL | expression} [, ... n]) [, ... n]) | tabla_derivada | sentencia_ejecutable | DEFAULT VALUES}} Description of the INTO clauses: ... Information on my computer (My.Computer) Posted by Elisha in Examples on 06 9th, 2009 | 8 comments In visual basic. Net we can obtain infomración on equipment that runs your application. Obtain this information using the My.Computer namespace. Here are some examples: To know the screen resolution: MsgBox (My.Computer.Screen.Bounds.Width ... Dialog box to select a color (ColorDialog) Posted by Elisha in Examples , Tutorials on 06 5th, 2009 | 8 comments Example very, very easy on the use of the dialog box to select colors in visual basic. Net. We just need a form, a button and a ColorDialog component for this example. and in the click event of BotCon copy the following code: If ColorDialog1.ShowDialog ... Read a full text file Posted by Elisha in Examples , Tutorials on 06 4th, 2009 | 15 comments I want to show on this occasion a very simple example of how one can read and load a text file in a TextBox with visual basic. Net. For example we need a form with two text boxes, button OpenFileDialog component n. As shown in the figure below: In the ...