Click here to Skip to main content
15,896,154 members
Home / Discussions / C#
   

C#

 
QuestionRe: Runnimg Application as System Process Pin
Vasudevan Deepak Kumar23-Mar-08 18:46
Vasudevan Deepak Kumar23-Mar-08 18:46 
GeneralRe: Runnimg Application as System Process Pin
CNewbie24-Mar-08 1:42
CNewbie24-Mar-08 1:42 
GeneralRe: Runnimg Application as System Process Pin
Dave Kreskowiak24-Mar-08 4:19
mveDave Kreskowiak24-Mar-08 4:19 
GeneralMobile to PC connection via Bluetooth Pin
SWG23-Mar-08 13:28
SWG23-Mar-08 13:28 
QuestionHow to add Textbox invisible mode Pin
Exelioindia23-Mar-08 13:05
Exelioindia23-Mar-08 13:05 
AnswerRe: How to add Textbox invisible mode Pin
Christian Graus23-Mar-08 13:12
protectorChristian Graus23-Mar-08 13:12 
AnswerRe: How to add Textbox invisible mode Pin
Vimal Raj23-Mar-08 23:35
Vimal Raj23-Mar-08 23:35 
GeneralProblems with a panel component after importing some classes Pin
rctriplane23-Mar-08 13:01
rctriplane23-Mar-08 13:01 
Help! I using some classes that came from a program that worked...it was an example from a book. My problem is when linking my program with these classes. It dos not reconize the windows form Panel which is used for drawing. My error message is Error 1 'WingSoft.DesignWing.PlotPanel' is inaccessible due to its protection level This puzzles me becouse it is squacking about is a form component. Here is a piece of code:
public void Transform(Matrix3 m, DesignWing form1, ChartStyle cs)
{
// Normalize the point:
float x1 = (X - cs.XMin) / (cs.XMax-cs.XMin) - 0.5f;
float y1 = (Y - cs.YMin) / (cs.YMax - cs.YMin) - 0.5f;
float z1 = (Z - cs.ZMin) / (cs.ZMax - cs.ZMin) - 0.5f;
// Perform transformation on the point using matrix m:
float[] result = m.VectorMultiply(new float[4] { x1, y1, z1, W });
X = result[0];
Y = result[1];
// Coordinate transformation from World to Device system:
float xShift = 1.05f;
float xScale = 1;
float yShift = 1.05f;
float yScale = 0.9f;
if (cs.Title == "No Title")
{
yShift = 0.95f;
yScale = 1;
}
if (cs.IsColorBar)
{
xShift = 0.95f;
xScale = 0.9f;
}
X = (xShift + xScale * X) * form1.PlotPanel.Width / 2;
Y = (yShift - yScale * Y) * form1.PlotPanel.Height / 2;
} ^it does not like this:'(
}
}
I renamed the form earlier ...would i be causing my own problems since vs 2005
said it could not rename all the files?Confused | :confused:
GeneralRe: Problems with a panel component after importing some classes Pin
Christian Graus23-Mar-08 13:15
protectorChristian Graus23-Mar-08 13:15 
GeneralWriting an html file from a form application Pin
johnny__XP23-Mar-08 10:40
johnny__XP23-Mar-08 10:40 
GeneralRe: Writing an html file from a form application Pin
Christian Graus23-Mar-08 11:22
protectorChristian Graus23-Mar-08 11:22 
GeneralRe: Writing an html file from a form application Pin
sarvesh.upadhyay24-Mar-08 1:16
professionalsarvesh.upadhyay24-Mar-08 1:16 
QuestionDetect mime-type without download Pin
SilverV23-Mar-08 7:29
SilverV23-Mar-08 7:29 
GeneralRe: Detect mime-type without download Pin
Giorgi Dalakishvili23-Mar-08 8:04
mentorGiorgi Dalakishvili23-Mar-08 8:04 
GeneralRe: Detect mime-type without download Pin
SilverV23-Mar-08 8:28
SilverV23-Mar-08 8:28 
GeneralRe: Detect mime-type without download Pin
Luc Pattyn23-Mar-08 9:09
sitebuilderLuc Pattyn23-Mar-08 9:09 
GeneralRegular expression content matching between opening and closing tags Pin
N a v a n e e t h23-Mar-08 6:43
N a v a n e e t h23-Mar-08 6:43 
GeneralRe: Regular expression content matching between opening and closing tags Pin
PIEBALDconsult23-Mar-08 7:19
mvePIEBALDconsult23-Mar-08 7:19 
GeneralRe: Regular expression content matching between opening and closing tags Pin
N a v a n e e t h23-Mar-08 7:43
N a v a n e e t h23-Mar-08 7:43 
QuestionReading a specific line from txt file Pin
Casper Hansen23-Mar-08 5:55
Casper Hansen23-Mar-08 5:55 
GeneralRe: Reading a specific line from txt file Pin
Xmen Real 23-Mar-08 6:07
professional Xmen Real 23-Mar-08 6:07 
GeneralRe: Reading a specific line from txt file Pin
Casper Hansen23-Mar-08 6:43
Casper Hansen23-Mar-08 6:43 
GeneralRe: Reading a specific line from txt file Pin
Gareth H23-Mar-08 7:02
Gareth H23-Mar-08 7:02 
GeneralRe: Reading a specific line from txt file Pin
PIEBALDconsult23-Mar-08 7:11
mvePIEBALDconsult23-Mar-08 7:11 
GeneralRe: Reading a specific line from txt file Pin
Xmen Real 23-Mar-08 13:47
professional Xmen Real 23-Mar-08 13:47 

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.