Click here to Skip to main content
16,011,868 members
Home / Discussions / C#
   

C#

 
Questionuser control Pin
nhathoang9-Nov-07 13:27
nhathoang9-Nov-07 13:27 
AnswerRe: user control Pin
mav.northwind9-Nov-07 20:30
mav.northwind9-Nov-07 20:30 
AnswerDouble post Pin
pmarfleet9-Nov-07 21:43
pmarfleet9-Nov-07 21:43 
QuestionIE7 Clearing cache before using a WebRequest to get data ? Pin
BillWoodruff9-Nov-07 12:59
professionalBillWoodruff9-Nov-07 12:59 
AnswerRe: IE7 Clearing cache before using a WebRequest to get data ? Pin
Rajasekharan Vengalil9-Nov-07 20:37
Rajasekharan Vengalil9-Nov-07 20:37 
GeneralRe: IE7 Clearing cache before using a WebRequest to get data ? Pin
BillWoodruff11-Nov-07 14:47
professionalBillWoodruff11-Nov-07 14:47 
QuestionSomething SImple Pin
MasterSharp9-Nov-07 10:48
MasterSharp9-Nov-07 10:48 
AnswerRe: Something SImple Pin
Judah Gabriel Himango9-Nov-07 10:58
sponsorJudah Gabriel Himango9-Nov-07 10:58 
You kind of already answered your question. For Windows Forms applications (as opposed to WPF or DirectX apps), you'd do something like put a Timer on your form. Set an event handler for the timer's Tick event. Inside that tick event, set the .Location of your picture box to a little higher than it was before, e.g.

myPictureBox.Location = new Point(myPictureBox.Location.X, myPictureBox.Location.Y - 1); // move the Y position up 1 pixel
If you're unsure how to do any of the stuff I mentioned, like setting up an event handler or putting a timer on your form, just ask specifically how to do something and we'll be glad to help.


Tech, life, family, faith: Give me a visit.
I'm currently blogging about: Forgive Me Father, For I Have Sinned: A Catholic Confession Regarding Sabbath
The apostle Paul, modernly speaking: Epistles of Paul

Judah Himango


GeneralRe: Something SImple Pin
MasterSharp9-Nov-07 11:04
MasterSharp9-Nov-07 11:04 
GeneralRe: Something SImple Pin
Judah Gabriel Himango9-Nov-07 11:12
sponsorJudah Gabriel Himango9-Nov-07 11:12 
AnswerRe: Something SImple Pin
Judah Gabriel Himango9-Nov-07 11:15
sponsorJudah Gabriel Himango9-Nov-07 11:15 
GeneralRe: Something SImple Pin
MasterSharp9-Nov-07 11:17
MasterSharp9-Nov-07 11:17 
GeneralRe: Something SImple Pin
Judah Gabriel Himango9-Nov-07 11:24
sponsorJudah Gabriel Himango9-Nov-07 11:24 
GeneralRe: Something SImple Pin
MasterSharp9-Nov-07 11:27
MasterSharp9-Nov-07 11:27 
GeneralRe: Something SImple Pin
Judah Gabriel Himango9-Nov-07 12:04
sponsorJudah Gabriel Himango9-Nov-07 12:04 
GeneralRe: Something SImple Pin
MasterSharp9-Nov-07 12:05
MasterSharp9-Nov-07 12:05 
GeneralRe: Something SImple Pin
Malcolm Smart9-Nov-07 12:18
Malcolm Smart9-Nov-07 12:18 
GeneralRe: Something SImple Pin
MasterSharp9-Nov-07 12:21
MasterSharp9-Nov-07 12:21 
GeneralRe: Something SImple Pin
Malcolm Smart9-Nov-07 12:30
Malcolm Smart9-Nov-07 12:30 
GeneralRe: Something SImple Pin
MasterSharp9-Nov-07 12:39
MasterSharp9-Nov-07 12:39 
GeneralRe: Something SImple Pin
Malcolm Smart9-Nov-07 12:45
Malcolm Smart9-Nov-07 12:45 
GeneralRe: Something SImple Pin
MasterSharp9-Nov-07 12:51
MasterSharp9-Nov-07 12:51 
GeneralRe: Something SImple Pin
MasterSharp9-Nov-07 12:54
MasterSharp9-Nov-07 12:54 
GeneralRe: Something SImple Pin
Judah Gabriel Himango10-Nov-07 16:37
sponsorJudah Gabriel Himango10-Nov-07 16:37 
AnswerRe: Something Simple Pin
Matthew Butler9-Nov-07 13:30
Matthew Butler9-Nov-07 13:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.