Need send text program

You can talk about VB programming here

Need send text program

Postby alnaghmoshy » Wed Sep 03, 2008 9:42 am


I need a source code for send text program with multi font color ,multi font size and type.
I like to use the program with latest versions of Paltalk.

many many many thanks 4 helping
aldoctor
alnaghmoshy
 
Posts: 2
Joined: Tue Jul 24, 2007 7:00 pm

Re: Need send text program

Postby Chike » Wed Sep 03, 2008 10:13 am

There are many programs that do it with their source code in the just 3 topics down yours, as well as tutorials and many code examples in the forums.
Don't expect anyone to write specific code you need, as the old paltalk saying says: this is not burger king and you can't have it your way.
Image
Chike
imFiles Master
imFiles Master
 
Posts: 581
Joined: Sun May 13, 2007 6:20 pm

Re: Need send text program

Postby autopilot » Wed Sep 03, 2008 9:54 pm

chike... get the spoons... i got the gerber...
Below is an old vb2005 function I used to use to format rtf text to send to pal:
Code: Select all
    Private Function TextUpdate(ByVal MyRTB As RichTextBox, _
        ByVal MyBold As Boolean, ByVal MyItal As Boolean, _
        ByVal MyUnd As Boolean, ByVal MyFontSize As Integer) _
        As RichTextBox
        Dim MyStyle As FontStyle
        MyStyle = 0
        If MyBold = True Then
            MyStyle = MyStyle + FontStyle.Bold
        End If
        If MyItal = True Then
            MyStyle = MyStyle + FontStyle.Italic
        End If
        If MyUnd = True Then
            MyStyle = MyStyle + FontStyle.Underline
        End If
        MyRTB.Font = New Font("Tahoma", MyFontSize, MyStyle)
        TextUpdate = MyRTB
    End Function


pal 9.4 send text
Music Bot 9 source code
RSS Bot Code

that is just 3 source projects, there are alot more if you just look... true you will have to do a bit of reading to see how the code is working, but that is how you learn
User avatar
autopilot
Forum Moderator
Forum Moderator
 
Posts: 356
Joined: Sat Sep 23, 2006 7:19 pm

Re: Need send text program

Postby Chike » Thu Sep 04, 2008 1:32 am

autopilot wrote:chike... get the spoons... i got the gerber...

We need napkins to whipe it when it runs down the chin.
Image
Chike
imFiles Master
imFiles Master
 
Posts: 581
Joined: Sun May 13, 2007 6:20 pm


Return to Visual Basic Programming

 


  • Related topics
    Replies
    Views
    Last post

Who is online

Users browsing this forum: No registered users and 0 guests