code,will,easily,user,create,simple,effective
Quick Search for:  in language:    
code,will,easily,user,create,simple,effective
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
RentACoder Stats

 Code:  lines
 Jobs: 0 postings

 
Sponsored by:

 

You are in:

 
Login



Latest Code Ticker for RentACoder.
Wrapping Scrolling Text
By Paranoid_Androi d on 7/2


Create A Dummy File
By AML on 7/2


Click here to see a screenshot of this code!Captionbar manipulation!
By Peter Hebels on 7/2

(Screen Shot)

A Game Of War
By Co0nest on 7/2


Click here to see a screenshot of this code!KeyGen Example
By Bengie|NET on 7/2

(Screen Shot)

Click here to see a screenshot of this code!OpenBrowser v1.9
By Orlando Jerez on 7/2

(Screen Shot)

SendMessageBySt ring() Example
By Jaime Muscatelli on 7/2


Click here to see a screenshot of this code!FirstSunday
By Jan Paul Penning on 7/2

(Screen Shot)

Click here to see a screenshot of this code!Ikonz v1.0
By Gaurav Creations on 7/2

(Screen Shot)

Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!





Affiliate Sites



 
 
   

The Most Simple Credit - Scroller

Print
Email
 
VB icon
Submitted on: 12/19/1998
By: silverx10  
Level: Not Given
User Rating: By 101 Users
Compatibility:

Users have accessed this code 7775 times.
 

(About the author)
 
     This code will easily let any user create simple, yet effective credit scroller. This is so effectively easy, that any novice can create it. I created this code because I tried the other source code on this site, and I found it difficult to follow.
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for langauges that allow it) freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.

    //**************************************
    //     
    // Name: The Most Simple Credit - Scroll
    //     er
    // Description:This code will easily let
    //     any user create simple, yet effective cr
    //     edit scroller. This is so effectively ea
    //     sy, that any novice can create it. I cre
    //     ated this code because I tried the other
    //     source code on this site, and I found it
    //     difficult to follow.
    // By: silverx10
    //
    // Inputs:N/A
    //
    //This code is copyrighted and has    // limited warranties.Please see http://
    //     www.Planet-Source-Code.com/xq/ASP/txtCod
    //     eId.1229/lngWId.-10/qx/vb/scripts/ShowCo
    //     de.htm    //for details.    //**************************************
    //     
    
    1) Create a new project (Standard EXE).
    2) Place a label on the form at the bottom with whichever BackColor you set the form's BackColor to, and leave all the other properties alone except these:
    A) Alignment: 2 - Center
    B) Caption: This is a sample scroller.
    3) On the form, place two picture boxes (one on top of the form, and one on the bottom) with these properties set. (Leave all others alone.)
    A) BackColor: &H80000012;&
    B) BorderStyle: 0 - None
    NOTE: Be sure that the picture box is covering the label.
    4) Place a timer on the form, and set the interval to '1'. And inside the timer, copy and paste this code:
    Label1.Top = (Label1.Top - 20)
    If Label1.Top = 0 Then '0 is the location topmost form coordinate
    Label1.Top = Me.Height
    End If
    5) Run and test the program. Viola! You now have created the most simple scroller program available! If you have any problems with this code, which you shouldn't, please e-mail me at: madcat47@hotmail.com


Other 24 submission(s) by this author

 

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this code(in the Not Given category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments
5/19/1999 12:56:00 AM:okie_rick
works great!!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
5/19/1999 2:02:00 PM:cheerie
Hi,
 The above program did not work 
for me as the label1.top may become 
negative
So I changed the statement 
to:
If Label1.Top <= 0 Then '0 is the 
location topmost form coordinate
 Label1.Top = Me.Top + Me.Height 'Set 
the 1800 to what the coordinate is For 
the forms bottom
   End If
Thanks for 
the nice code.
Cheerie
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
5/19/1999 2:56:00 PM:David Halter
Oh but it can go negative if you put 
everything in another picture box. just 
thought you might like to know.
CYA
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
5/19/1999 3:28:00 PM:NocTurN
Looks great!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
5/20/1999 12:07:00 AM:Terrance Henry Shaw
Rick:
     Thank you for your 
positive feedback!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
7/20/1999 1:29:00 PM:Hyrax
Hey, this code is almost like mine, but 
it isn't the easiest code to follow, 
but it looks to me like i submitted 
sorta the same thing. Hmmm, i didn't 
see this code before i submitted it. 
But, i am gonna leave mine up, it 
already has over 3400 hitz, and i put 
it up 2 dayz ago....
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
9/7/1999 2:00:00 AM:Muhammed Zeeshan
Hi,
Tell me one thing how can we set 
the coordinates.
Coz i want the text 
to come from the bottom of the 
screen.
i hope you got my 
point.
Thanx.
please do reply.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
9/7/1999 2:46:00 AM:Terrance Henry Shaw
Muhammed Zeeshan:
     If you mean 
that you want for the text to come from 
the very bottom of the form, then all 
you have to do is make the form high, 
and then put the label at the bottom of 
the form, and then shrink the form's 
height.  If you mean something else, I 
don't know.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
12/14/1999 1:13:28 AM:Terrance Henry Shaw
Everyone, I would like to thank all of 
you who gave my source code a rating of 
six!!! I am so happy, I wish I could 
give each of you something, but I'm 
broke.  :o(  But I will try to give 
contests for free stuff whenever I can 
(i.e. modems, software, etc).  Thanks 
again!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular code, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | RentACoder Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.