Author Topic: Visual Basic 6 Professional  (Read 23979 times)

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: Visual Basic 6 Professional
« Reply #30 on: 2006-07-09, 09:25:48 PM »
Here's an idea:  Create a WebBrowser object next to it, set its default url to "about:blank" then whenever the user clicks on one of the buttons, call two functions:
Code: [Select]
WebBrowser1.OpenNew false
WebBrowser1.Document.Write TextBox1.Text

Where TextBox1 is the name of the textbox already on the form and WebBrowser1 is the Web Browser object you just added.  This will allow you to automatically preview what the form will look like every time they add a new object.  Alternately, you could add these lines to the textbox1_change event so that it will update when they change it manually as well.
Edward Dassmesser

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: Visual Basic 6 Professional
« Reply #31 on: 2006-07-10, 12:15:17 PM »
I added a select all and copy button. I also added the web browser thing. Here it is: http://www.geocities.com/sam_2d_online/formcreator_v12.zip

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: Visual Basic 6 Professional
« Reply #32 on: 2006-07-11, 08:18:45 PM »
Hey... :) Ummm... How do I make it so that every time the person clicks one of the buttons that adds code it starts a new line in the textbox (TextBox1)? The HTML just looks extremely messy.... ;D so if I could have it so that every time a new command is added (ie. new button, checkbox...ect.) is starts a new line so that the next command added will be on the next line.

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: Visual Basic 6 Professional
« Reply #33 on: 2006-07-11, 08:52:32 PM »
Textbox1.text += "\n" + TheTextYouWantToAdd

or, if the text you want to add is a literal string, such as "Hello, World!"

Textbox1.text += "\nHello, World!"

\n denotes a new line character. or \r\n or \r.  Depending on what Opperating system you're using, they use different endline characters as standard, but \n is I think what everybody uses usually. \n means Linefeed, \r means Carriage Return (terms originally taken from a typewriter).
Edward Dassmesser

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: Visual Basic 6 Professional
« Reply #34 on: 2006-07-12, 08:58:05 AM »
Ugh...I tried that...It didn't work. It just recognized the '\n' as text and instead of starting a new line it just put '\n' between each command. What am I doing wrong? Did I put the '\n' in the wrong place? I also tried a few other things like the '\r\n' and '\r' but they also didn't work.
Code: [Select]
Public Class Form1
    Private Sub ToolStripButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton1.Click

        TextBox1.Text += "\n<input type='radio' name=' ' value='RadioButton'>"
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Document.Write(TextBox1.Text)
    End Sub
    Private Sub ToolStripButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton2.Click

        TextBox1.Text += "\n<input type='checkbox' name=' ' value='CheckBox'>"
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Document.Write(TextBox1.Text)
    End Sub
    Private Sub ToolStripButton3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton3.Click

        TextBox1.Text += "\n<input type='text' name=' ' value=' ' maxlength=' ' size='25'>"
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Document.Write(TextBox1.Text)
    End Sub

    Private Sub ToolStripButton4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton4.Click
        TextBox1.Text += "\n<textarea cols='15' rows='5'>text here</textarea>"
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Document.Write(TextBox1.Text)
    End Sub

    Private Sub ToolStripButton5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton5.Click
        TextBox1.Text += "\n<input type='submit' value='Submit'>"
        TextBox1.SendToBack()
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Document.Write(TextBox1.Text)
    End Sub

    Private Sub ToolStripButton6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton6.Click
        TextBox1.Text += "\n<input type='reset' value='Reset'>"
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Document.Write(TextBox1.Text)
    End Sub

    Private Sub ToolStripButton7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton7.Click
        TextBox1.Text += "\n<br>"
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Document.Write(TextBox1.Text)
    End Sub

    Private Sub ToolStripButton8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton8.Click
        TextBox1.Text += "\n</form>"
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Document.Write(TextBox1.Text)
    End Sub

    Private Sub ToolStripButton9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton9.Click
        TextBox1.SelectAll()
    End Sub

    Private Sub ToolStripButton10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton10.Click
        TextBox1.Copy()
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Document.Write(TextBox1.Text)
    End Sub
    Private Sub ToolStripButton11_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton11.Click
        TextBox1.Clear()
        TextBox1.Text += "<form action=' ' method=' '>"
        WebBrowser1.Document.OpenNew(False)
        WebBrowser1.Refresh()
    End Sub
End Class

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
VB .NET Multi-line Text
« Reply #35 on: 2006-07-13, 05:19:30 AM »
"\n" is for a newline in C#.  If you want a newline in VB.NET I generally use vbCrLf like this:

Text1.Text &= vbCrLf & "My next line of text"

Cr is for the carrige return and Lf is for the line feed.  The combination is what generally creates a new line in a windows application.  Also, in my example above, Text1's MultiLine property would have to be set to true to show the multi-line text.

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: Visual Basic 6 Professional
« Reply #36 on: 2006-07-13, 06:49:50 AM »
whoops
Edward Dassmesser

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: Visual Basic 6 Professional
« Reply #37 on: 2006-07-13, 07:52:08 AM »
yay it works now ;D lol durnurd, how many codes do you know?

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: Visual Basic 6 Professional
« Reply #38 on: 2006-07-13, 05:24:42 PM »
Too many, apparently.

Basic, Visual Basic, VBScript, VB.NET, C++, C#, PHP, Java, Javascript, HTML, CSS, ASP.NET, and most recently, Whatever InstallShield uses which is a mix between Basic, C#, and perhaps some other language I don't know (i.e. Perl)
Edward Dassmesser

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: Visual Basic 6 Professional
« Reply #39 on: 2006-07-13, 07:11:44 PM »
13..wow...but ofcourse I've seen someone that knew 14. She works at a university, Trent University. I never knew there were 3 VB codes...Is there much difference between them?

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: Visual Basic 6 Professional
« Reply #40 on: 2006-07-13, 09:37:38 PM »
ugh...this is a little off-topic. So I have the .net framework 2.0 redistributable. I was trying to compile a hello world C# tutorial thing but it wouldn't work. Do i need to download the framework 2.0 SDK that is 354 megs?

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: Visual Basic 6 Professional
« Reply #41 on: 2006-07-14, 09:35:43 AM »
Oh, I can come up with some more if you like ;-)  Let's see... TI-83+ Programming Language, for example.

What have you tried doing to compile the program, and what happens when it fails?
Edward Dassmesser

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: Visual Basic 6 Professional
« Reply #42 on: 2006-07-14, 11:24:46 AM »
wow...never heard of that one...
I'll try doing the tutorial again now, so I can remember what happens other than it just not working :p

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: Visual Basic 6 Professional
« Reply #43 on: 2006-07-14, 11:32:43 AM »
OK, I just redid the tutorial. First it told me to type this :
Code: [Select]
class hello
//This program does not do much
{
    static public void Main()
    {
       System.Console.WriteLine("Hello World");
    }
}
in my favorite text-editor blah blah blah... So I did. Then is just said to type csc I pressed enter:


durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: Visual Basic 6 Professional
« Reply #44 on: 2006-07-14, 01:56:24 PM »
Oh, the TI-83+ is a graphing calculator that a lot of people have for math classes from 8th grade on up through advanced calc in 2nd year of college (I still use mine).  And I just thought of another one: I know a little bit of XSL, kind of.

I think a very good idea would be for you to download the C# Express IDE and develop from there.  It makes things about 30 times easier.  Barring that:

For this to work, you need to either specify the path of csc.exe or go there.  The path should be at:

C:\windows\Microsoft.Net\Framework\v2.0.50727\

change your directory to there (i.e. type cd C:\windows\Microsoft.Net\Framework\v2.0.50727\) then try just running csc.  It should come up with the error "No Inputs Specified".  Which means that you need to tell it where myhello.cs is.  If myhello.cs is in C:\Documents And Settings\User\My Documents\Visual Studio 2005\Projects\MyHello\ then the entire command line would be:

csc "C:\Documents And Settings\User\My Documents\Visual Studio 2005\Projects\MyHello\myhello.cs"

This will build the executable in the current directory, which is probably not where you want it.  So you'll want to specify where to put the output, or run it from somewhere where you do want it to go.  In the first case:

csc "C:\Documents And Settings\User\My Documents\Visual Studio 2005\Projects\MyHello\myhello.cs" /out:"c:\Documents And Settings\User\Desktop\myhello.exe"

will output the file onto the desktop.  In the second case:

Change the directory to the desktop (i.e. type: cd "c:\Documents And Settings\User\Desktop")
now type:
\windows\Microsoft.Net\Framework\v2.0.50727\csc.exe "..\My Documents\Visual Studio 2005\Projects\MyHello\myhello.cs"
(This demonstrates relative paths.  \Windows goes to the root of the drive before specifying what to do, while ..\ goes to the parent directory, that is, User)

If, on the other hand, you want to add the .NET framework directory to your PATH variable, so you can run it from anywhere:
PATH C:\windows\Microsoft.Net\Framework\v2.0.50727\;%PATH%
will prepend that path to the PATH variable, so you can run any programs from that directory without having to either be in that directory or specify it directly.  That means that you can just type
csc myhello.cs
when you are in the directory with myhello.cs and it will automatically create the executable in the same directory.

Like I say, getting the IDE would be about 30 times easier.
« Last Edit: 2006-07-14, 02:04:57 PM by durnurd »
Edward Dassmesser