◘◘◘VisualXtremes◘◘◘

<a href="http://www.forums100.com/in.php?id=1665"><img src="http://www.forums100.com/button.php?id=1665" border="0" /></a><br><font face="Tahoma"><span style="font-size: 6pt; font-weight: 700"><a href="http://www.forums100.com" style="text-decoration: none">Top 100 Forums</a></span></font><!-- BEGIN TOP SITE LIST PLANET VOTING CODE -->
<center>
<a href="http://forumz.top-site-list.com/vote447.html">
<IMG SRC="http://forumz.top-site-list.com/images/voteimage/forumz-2.jpg" border=0></a><br><font size=1><a href="http://www.top-site-list.com/">Free TopSite</a></font>
</center>
<!-- END TOP SITE LIST PLANET VOTING CODE -->
VOTE NOW TO HELP US TO GROW!

Join the forum, it's quick and easy

◘◘◘VisualXtremes◘◘◘

<a href="http://www.forums100.com/in.php?id=1665"><img src="http://www.forums100.com/button.php?id=1665" border="0" /></a><br><font face="Tahoma"><span style="font-size: 6pt; font-weight: 700"><a href="http://www.forums100.com" style="text-decoration: none">Top 100 Forums</a></span></font><!-- BEGIN TOP SITE LIST PLANET VOTING CODE -->
<center>
<a href="http://forumz.top-site-list.com/vote447.html">
<IMG SRC="http://forumz.top-site-list.com/images/voteimage/forumz-2.jpg" border=0></a><br><font size=1><a href="http://www.top-site-list.com/">Free TopSite</a></font>
</center>
<!-- END TOP SITE LIST PLANET VOTING CODE -->
VOTE NOW TO HELP US TO GROW!

◘◘◘VisualXtremes◘◘◘

Would you like to react to this message? Create an account in a few clicks or log in to continue.

+8
kenneth659
henderson791
cammeron12
chotadon
radcliff1234
adolph3560
Crazto
JOey
12 posters

    [HELP] I need help with a few codes

    avatar
    JOey
    Moderator
    Moderator


    Posts : 16
    Tokens : 227
    Reputation : 1
    Join date : 2009-08-11

    [HELP] I need help with a few codes Empty [HELP] I need help with a few codes

    Post  JOey Tue Aug 11, 2009 1:47 pm

    Why i got this error in this code? I want to make a Bold Button!

    label1.font.bold = true
    avatar
    Crazto
    Leacher
    Leacher


    Posts : 13
    Tokens : 171
    Reputation : 0
    Join date : 2009-08-12

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  Crazto Thu Aug 20, 2009 7:20 am

    hm i don't remember how to do it... i gonna send you code when i gonna be at home!
    avatar
    adolph3560
    Member
    Member


    Posts : 35
    Tokens : 453
    Reputation : 0
    Join date : 2010-02-19

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  adolph3560 Mon Mar 08, 2010 5:50 pm

    go for the google, dude..

    pirat pirat





    ----------------
    Lanzarote
    avatar
    radcliff1234
    Member
    Member


    Posts : 26
    Tokens : 308
    Reputation : 0
    Join date : 2010-03-15

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  radcliff1234 Wed Apr 07, 2010 11:27 am

    I think you should be take the help of google
    sunny sunny sunny

    ____________
    Wedding Videos
    avatar
    chotadon
    Leacher
    Leacher


    Posts : 4
    Tokens : 60
    Reputation : 0
    Join date : 2010-04-21

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  chotadon Wed Apr 21, 2010 7:38 pm

    i am having this same props........

    ________________

    Social Bookmarking Submission Service

    Manual Article Submission Service
    avatar
    cammeron12
    Leacher
    Leacher


    Posts : 11
    Tokens : 137
    Reputation : 0
    Join date : 2010-04-23

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  cammeron12 Tue May 04, 2010 7:32 pm

    Division-

    Private sub command1_click()
    text3.text=val(text1.text)/val(text2.text)
    End sub

    __________
    VGA Cable
    XLR Cable
    avatar
    henderson791
    Leacher
    Leacher


    Posts : 23
    Tokens : 291
    Reputation : 0
    Join date : 2010-03-22

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  henderson791 Sun May 16, 2010 1:19 am

    With this you only change one property, the FontStyle. Certainly not as easy as:

    Select Case CheckBox1.CheckState

    Case CheckState.Checked

    Label1.Font.Bold = False

    Case CheckState.UnChecked

    Label1.Font.Bold = True

    End Select

    _______________________________________
    Sports Supplements
    Sports Nutrition
    avatar
    kenneth659
    Member
    Member


    Posts : 34
    Tokens : 429
    Reputation : 0
    Join date : 2010-04-22

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  kenneth659 Thu May 27, 2010 1:53 pm

    You can go through this code:

    Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click, Button2.Click
    ToggleStyle(Font.Bold)
    End Sub

    Private Sub ToggleStyle(ByVal style As FontStyle)
    Dim Font1 As New Font(Button1.Font, Button1.Font.Style Xor style)
    Dim Font2 As New Font(Button2.Font, Button2.Font.Style Xor style)

    Button1.Font = Font2
    Button2.Font = Font1
    End Sub

    Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Button1.Font = New Font(Button1.Font, FontStyle.Bold)
    End Sub
    End Class
    ___________________________________
    Bodybuilding Supplements
    Supplements
    avatar
    walker935
    Member
    Member


    Posts : 31
    Tokens : 426
    Reputation : 0
    Join date : 2010-03-18

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  walker935 Fri May 28, 2010 4:00 pm

    Division-

    Private sub command1_click()
    text3.text=val(text1.text)/val(text2.text)
    End sub
    _________________________
    Whey Protein
    Protein Supplements
    avatar
    sshayndell12
    Leacher
    Leacher


    Posts : 12
    Tokens : 198
    Reputation : 0
    Join date : 2010-05-14

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  sshayndell12 Sat Jun 12, 2010 11:54 pm

    To use this source sample create a new VB project, add a listbox control to the form and set its DragMode property to Automatic. Go to the code window and add the following code.

    1.Dim ItemCount As Integer
    2.Dim I As Integer
    3.
    4.On Error Resume Next
    5.ItemCount = Data.Files.Count
    6.
    7.For I = 1 To ItemCount
    8.List1.AddItem Data.Files(I)
    9.Next
    10.
    11.If Err Then Err.Clear

    Once you have the code in place run your program (Press F5) and then you can drag things into your list box. For example open up your My Computer explorer and drag a folder from it onto your listbox. You will see it now is located in the box. You can build upon this to add great drag and drop support to your applications.

    -------------------------------------------------------
    Kerastase
    Kerastase Reflection
    avatar
    bardrick25
    Leacher
    Leacher


    Posts : 24
    Tokens : 318
    Reputation : 0
    Join date : 2010-05-12

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  bardrick25 Thu Jun 17, 2010 2:23 pm

    I don't remember how to do it... i gonna send you code when i gonna be at home!
    _____________________________________________
    Accountant Jobs
    Accounting Jobs
    avatar
    Stephany297
    Member
    Member


    Posts : 28
    Tokens : 364
    Reputation : 0
    Join date : 2010-09-08

    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  Stephany297 Tue Nov 16, 2010 6:31 pm

    Select Case CheckBox1.{
    if{
    Label1.Font.Bold = False
    }
    else{
    Label1.Font.Bold = True
    }
    ________________________
    Link Building
    SEO Packages

    Sponsored content


    [HELP] I need help with a few codes Empty Re: [HELP] I need help with a few codes

    Post  Sponsored content

      Similar topics

      -

      Current date/time is Mon May 20, 2024 10:45 pm