Forum: VB.NET Dec 30th, 2008 |
| Replies: 12 Views: 30,675 obj.show
makes the text entered in form1 appear visibly in form2 |
Forum: VB.NET Nov 22nd, 2008 |
| Replies: 1 Views: 709 Public Class Form1
Private Sub TextBox1_MouseHover(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.MouseHover
ToolTip1.SetToolTip(TextBox1, "Cash Flow")... |
Forum: VB.NET Nov 22nd, 2008 |
| Replies: 2 Views: 987 thank you that helped so much... ***** |
Forum: VB.NET Nov 22nd, 2008 |
| Replies: 2 Views: 987 ok i have a few textboxes and they have a "default" text.
when you put your cursor into the textbox how can i delete the text automaticaly.
see my picture to understand more |
Forum: VB.NET Nov 14th, 2008 |
| Replies: 5 Views: 866 Private Sub PreviewToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PreviewToolStripMenuItem.Click
Dim PreviewFileName As String
Dim... |
Forum: VB.NET Nov 13th, 2008 |
| Replies: 5 Views: 866 ok this is getting somewhere, good.
but when i tried to run the debugger it highlighted this:
My.Computer.FileSystem.WriteAllText(PreviewFileName, PreviewFileHTML, False)
i dont know what to do... |
Forum: VB.NET Nov 13th, 2008 |
| Replies: 5 Views: 866 ok i am making a simple HTML editor and i added a small feature that allows the user to click a preview button which opens up another form window that has a webpage object in it.
the problem is,... |
Forum: VB.NET Nov 12th, 2008 |
| Replies: 3 Views: 865 thank you sooo much, it worked, everyone elses codes were too complicated or just plain didnt work. and again thank you. |
Forum: VB.NET Nov 12th, 2008 |
| Replies: 3 Views: 865 can somebody help me with this??
i need to insert some text into a textbox, but it needs to go where i want it just not the very end every time.
here is what i got so far
Code:... |