SeptimusHeap wrote:
Daffy22 wrote:
nathanprocks wrote:
it would be cool if someone wrote a program that would probably use wminput to tell Scratch the sensor values of the Wiimote lolYeah! Not gona happen in vb though
Did you make Open Mind?
Ah! Here's Optum, my web browser!
........
Oh, hi person that likes VB tutorials on YT.
Offline
SeptimusHeap wrote:
Daffy22 wrote:
nathanprocks wrote:
it would be cool if someone wrote a program that would probably use wminput to tell Scratch the sensor values of the Wiimote lolYeah! Not gona happen in vb though
Did you make Open Mind?
Ah! Here's Optum, my web browser!
Yes I did and still am!
Ill check out ur web browser
Offline
I'd be impressed if someone made a WebKit browser with VB.
Offline
veggieman001 wrote:
I'd be impressed if someone made a WebKit browser with VB.
Ehm, it's easy...
I've made a couple before: you just need the Webkit DLLs. Of course, it involves referencing them, declaring stuff, and lots of code, so it's not something easily done just using the visuals (unlike most VB stuff)
Offline
LS97 wrote:
veggieman001 wrote:
I'd be impressed if someone made a WebKit browser with VB.
Ehm, it's easy...
I've made a couple before: you just need the Webkit DLLs. Of course, it involves referencing them, declaring stuff, and lots of code, so it's not something easily done just using the visuals (unlike most VB stuff)
True, but nearly everyone just makes a Trident browser and calls it good and don't really care because it's easy. I'd be impressed if someone cared enough to use a decent rendering engine.
Offline
veggieman001 wrote:
LS97 wrote:
veggieman001 wrote:
I'd be impressed if someone made a WebKit browser with VB.
Ehm, it's easy...
I've made a couple before: you just need the Webkit DLLs. Of course, it involves referencing them, declaring stuff, and lots of code, so it's not something easily done just using the visuals (unlike most VB stuff)True, but nearly everyone just makes a Trident browser and calls it good and don't really care because it's easy. I'd be impressed if someone cared enough to use a decent rendering engine.
Oh, yeah, I see your point.
Offline
veggieman001 wrote:
LS97 wrote:
veggieman001 wrote:
I'd be impressed if someone made a WebKit browser with VB.
Ehm, it's easy...
I've made a couple before: you just need the Webkit DLLs. Of course, it involves referencing them, declaring stuff, and lots of code, so it's not something easily done just using the visuals (unlike most VB stuff)True, but nearly everyone just makes a Trident browser and calls it good and don't really care because it's easy. I'd be impressed if someone cared enough to use a decent rendering engine.
+1
I'd be impressed if someone made a browser that downloads the html source then renders the page and you're the one who coded the rendering.
Offline
what-the wrote:
SeptimusHeap wrote:
Hey, could somebody look over this code, I don't know what's wrong. It can't send emails.
Code:
P...Have you made sure that your ISP allows you to send emails? I setup my computer before as an email host and my ISP would not allow me to send emails (It's meant to reduce spam).
I've done it before on my rickety old computer that unfortunately crashed...
Offline
cocolover76 wrote:
SeptimusHeap wrote:
Daffy22 wrote:
Yeah! Not gona happen in vb thoughDid you make Open Mind?
Ah! Here's Optum, my web browser!........
Oh, hi person that likes VB tutorials on YT.
And you're so much more skilled?
If you would have downloaded it and looked at it, you would have seen I coded much of it from scratch.
Offline
SeptimusHeap wrote:
cocolover76 wrote:
SeptimusHeap wrote:
Did you make Open Mind?
Ah! Here's Optum, my web browser!........
Oh, hi person that likes VB tutorials on YT.And you're so much more skilled?
If you would have downloaded it and looked at it, you would have seen I coded much of it from scratch.
I can make these in VB:
-RTF Text Editor
-Office 2007-style Ribbon
-WPF controls in a NON-WPF program.
Things I plan to make.
Last edited by cocolover76 (2012-02-12 19:08:44)
Offline
Freakish wrote:
I've never don't Visual Basic.
Oh.
Offline
cocolover76 wrote:
SeptimusHeap wrote:
cocolover76 wrote:
........
Oh, hi person that likes VB tutorials on YT.And you're so much more skilled?
If you would have downloaded it and looked at it, you would have seen I coded much of it from scratch.I can make these in VB:
-RTF Text Editor
-Office 2007-style Ribbon
-WPF controls in a NON-WPF program.
Things I plan to make.
Why did you give me a list of stuff other people have made?
Anyway, maybe want to partner up and make something?
Offline
LS97 wrote:
what-the wrote:
Found some info on communicating with VB.net.
Imports System
Imports System.IO.Ports
Public Class Form1
Dim WithEvents Port As SerialPort = _
New SerialPort("COM1", 9600, Parity.None, 8, StopBits.One)
This is great.
So scratch communicates on COM1, 42001.
So how many bits does scratch use, parity and stop bits?
And the format scratch communicates.
http://www.codeproject.com/Articles/17190/Communication-on-a-serial-port-in-NET-2-0
for more info.Are you sure Scratch has to communicate on COM1? It's a port that doesn't exist on many computers anymore... including mine
For the format, it's
byte byte byte byte message
the four bytes represent the size of the message string.
Well on my computer COM1 is the only that always there. Others come and go depending on what I plug into my machine.
Thanks. So what how many bits are in each character? I'm thinking 8.
How many bits signal the end of character? None?
Offline
Yeah, maybe I might wanna partner up someday to make this:
(ignore the text formatting things)
Last edited by cocolover76 (2012-02-12 19:45:07)
Offline
I made a browser, but now that I'm on a Mac I don't use it anymore
Offline
Yes got VB.net to listen to scratch. It can also communicate if I bother to get the format right.
Imports System.Net.Sockets Imports System.Text Module Module1 Sub Main() For value As Integer = 0 To 50 Dim tcpClient As New System.Net.Sockets.TcpClient() tcpClient.Connect("127.0.0.1", 42001) Dim networkStream As NetworkStream = tcpClient.GetStream() If networkStream.CanWrite And networkStream.CanRead Then ' Do a simple write. Dim sendBytes As [Byte]() = Encoding.ASCII.GetBytes("Is anybody there") 'networkStream.Write(sendBytes, 0, sendBytes.Length) ' Read the NetworkStream into a byte buffer. Dim bytes(tcpClient.ReceiveBufferSize) As Byte networkStream.Read(bytes, 0, CInt(tcpClient.ReceiveBufferSize)) ' Output the data received from the host to the console. Dim returndata As String = Encoding.ASCII.GetString(bytes) Console.WriteLine(("Host returned: " + returndata)) Else If Not networkStream.CanRead Then Console.WriteLine("cannot not write data to this stream") tcpClient.Close() Else If Not networkStream.CanWrite Then Console.WriteLine("cannot read data from this stream") tcpClient.Close() End If End If End If Threading.Thread.Sleep(4000) Next End Sub End Module
And on scratch. Activate mesh
when green flag clicked loop broadcast [start] wait(4) change [value] by (1) loopI'm not good with these new block...
Last edited by what-the (2012-02-12 20:32:46)
Offline
cocolover76 wrote:
Yeah, maybe I might wanna partner up someday to make this:
http://i.imgur.com/2tJHo.png
(ignore the text formatting things)
What the heck?!
Offline
cocolover76 wrote:
Yeah, maybe I might wanna partner up someday to make this:
http://i.imgur.com/2tJHo.png
(ignore the text formatting things)
No offence but it looks like you just copied a bunch of distorted pictures onto a background...
Offline
SeptimusHeap wrote:
cocolover76 wrote:
Yeah, maybe I might wanna partner up someday to make this:
http://i.imgur.com/2tJHo.png
(ignore the text formatting things)What the heck?!
You actually want to make a browser that's worse than IE? One with a Ribbon?!?!?!
*faints*
Offline
jji7skyline wrote:
SeptimusHeap wrote:
cocolover76 wrote:
Yeah, maybe I might wanna partner up someday to make this:
http://i.imgur.com/2tJHo.png
(ignore the text formatting things)What the heck?!
You actually want to make a browser that's worse than IE? One with a Ribbon?!?!?!
*faints*
Lol +1
Offline
cocolover76 wrote:
Yeah, maybe I might wanna partner up someday to make this:
http://i.imgur.com/2tJHo.png
(ignore the text formatting things)
Did you make that ribbon yourself or is it a 3rd party control?
Offline
Daffy22 wrote:
cocolover76 wrote:
Yeah, maybe I might wanna partner up someday to make this:
http://i.imgur.com/2tJHo.png
(ignore the text formatting things)Did you make that ribbon yourself or is it a 3rd party control?
From what I can see he didn't make any of it xD
Offline
slinger wrote:
Daffy22 wrote:
cocolover76 wrote:
Yeah, maybe I might wanna partner up someday to make this:
http://i.imgur.com/2tJHo.png
(ignore the text formatting things)Did you make that ribbon yourself or is it a 3rd party control?
From what I can see he didn't make any of it xD
i've seen that ribbon control before lol.... the browser is just firefox lol and the only thing he made is probably the "CocoBrowse 2012" part lol
Offline
nathanprocks wrote:
slinger wrote:
Daffy22 wrote:
Did you make that ribbon yourself or is it a 3rd party control?
From what I can see he didn't make any of it xD
i've seen that ribbon control before lol.... the browser is just firefox lol and the only thing he made is probably the "CocoBrowse 2012" part lol
Yeah thought so, the way it way painted on the non client area and everything
Mind you, nothing to be ashamed of. Open Mind 2 will be using a 3rd party ribbon control.
Last edited by Daffy22 (2012-02-13 03:19:57)
Offline