Click here to Skip to main content
15,921,179 members
Home / Discussions / C#
   

C#

 
GeneralRe: Need a Script? Pin
Abubakarsb4-Mar-07 11:23
Abubakarsb4-Mar-07 11:23 
GeneralRe: Need a Script? Pin
sharpiesharpie4-Mar-07 11:25
sharpiesharpie4-Mar-07 11:25 
GeneralRe: Need a Script? Pin
Guffa4-Mar-07 12:01
Guffa4-Mar-07 12:01 
GeneralRe: Need a Script? Pin
Abubakarsb4-Mar-07 21:25
Abubakarsb4-Mar-07 21:25 
AnswerRe: Need a Script? Pin
Guffa4-Mar-07 22:18
Guffa4-Mar-07 22:18 
GeneralRe: Need a Script? Pin
Abubakarsb4-Mar-07 23:01
Abubakarsb4-Mar-07 23:01 
QuestionMoving a control along a line... [modified] Pin
new_phoenix4-Mar-07 8:51
new_phoenix4-Mar-07 8:51 
AnswerRe: Moving a control along a line... Pin
S. Senthil Kumar4-Mar-07 15:03
S. Senthil Kumar4-Mar-07 15:03 
How about determining the equation of the line, using the initial point and destination point and then increasing one of the coordinates, solving for the other? Say, for example, your initial point is (5,5) and destination is (15,10).
(y-y1)/(y2-y1) = (x-x1)/(x2-x1)
(y-5)/(10-5) = (x-5)/(15-5)
(y-5)/5 = (x-5)/10
2y-10=x-5
x-2y = -5


You could then run a loop for x = 5 to 15 and calculate y based on the above equation, and then plot the point (x,y).

Regards
Senthil [MVP - Visual C#]
_____________________________
My Blog | My Articles | My Flickr | WinMacro

Questionc# / COM / Excel Automation Add-Ins Pin
Member 38866844-Mar-07 7:07
Member 38866844-Mar-07 7:07 
QuestionStringConverter - Editing an existing value instead of creating one Pin
andy1804-Mar-07 5:18
andy1804-Mar-07 5:18 
AnswerRe: StringConverter - Editing an existing value instead of creating one Pin
Guffa4-Mar-07 10:00
Guffa4-Mar-07 10:00 
QuestionController/GUI in seperate asemblies Pin
MEK34-Mar-07 4:38
MEK34-Mar-07 4:38 
AnswerRe: Controller/GUI in seperate asemblies Pin
S. Senthil Kumar4-Mar-07 7:11
S. Senthil Kumar4-Mar-07 7:11 
QuestionIE Toolbar with visual studio 2005 Pin
ga2144-Mar-07 4:25
ga2144-Mar-07 4:25 
AnswerRe: IE Toolbar with visual studio 2005 Pin
Vasudevan Deepak Kumar4-Mar-07 5:04
Vasudevan Deepak Kumar4-Mar-07 5:04 
GeneralRe: IE Toolbar with visual studio 2005 Pin
Wayne Phipps4-Mar-07 6:25
Wayne Phipps4-Mar-07 6:25 
GeneralRe: IE Toolbar with visual studio 2005 Pin
Vasudevan Deepak Kumar4-Mar-07 15:33
Vasudevan Deepak Kumar4-Mar-07 15:33 
QuestionScanning through directories and subdirectories Pin
Polezniy4-Mar-07 1:01
Polezniy4-Mar-07 1:01 
AnswerRe: Scanning through directories and subdirectories Pin
kubben4-Mar-07 2:00
kubben4-Mar-07 2:00 
GeneralRe: Scanning through directories and subdirectories Pin
Polezniy4-Mar-07 9:50
Polezniy4-Mar-07 9:50 
GeneralRe: Scanning through directories and subdirectories Pin
Wayne Phipps4-Mar-07 10:26
Wayne Phipps4-Mar-07 10:26 
GeneralRe: Scanning through directories and subdirectories Pin
kubben4-Mar-07 11:11
kubben4-Mar-07 11:11 
GeneralRe: Scanning through directories and subdirectories Pin
Polezniy5-Mar-07 5:24
Polezniy5-Mar-07 5:24 
GeneralRe: Scanning through directories and subdirectories Pin
kubben5-Mar-07 5:29
kubben5-Mar-07 5:29 
AnswerRe: Scanning through directories and subdirectories Pin
Colin Angus Mackay4-Mar-07 4:20
Colin Angus Mackay4-Mar-07 4:20 

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.