1 Attachment(s)
Use VisualBasic Immediate Window in App
hi guys i h ave two question :
1: how can i use immediate window (for winsock data arrival) in my app(.exe)
(showed in picture)
for see what i receive from winsock
-----------------------------------------------------------
2: i have winsock data arrival like this:
hello 123 test <fone face="Tahoma" size="12" color="#000000"> test
how can i get font name and font size from this data arrival for my richtext box ?
rtb.selfontname = Tahoma ???????????? like this ?
:wave:
Re: Use VisualBasic Immediate Window in App
Immediate Window is only available in VB IDE for debugg ing purposes.
Print data to some local text file when running exe.
Re: Use VisualBasic Immediate Window in App
Quote:
End Select
Debug.Print Data
Text1.seltext = data
1
End Sub
i did already but it dont show whole data , just some of them. you can see the pic it show whole thing i receive but when i print just some of them showing
Re: Use VisualBasic Immediate Window in App
As RhinoBull was saying the Debug.Print will only work in VB IDE.
You might want to modify it a little and make the textbox multiline with scrollbars.
Text1.Text = Text1.Text & Data & vbCrLf