Click here to Skip to main content
15,898,588 members
Home / Discussions / C#
   

C#

 
QuestionI want to use CSS with c# windows application Pin
fahad4228-Aug-08 7:35
fahad4228-Aug-08 7:35 
AnswerRe: I want to use CSS with c# windows application Pin
Dan Neely28-Aug-08 8:04
Dan Neely28-Aug-08 8:04 
AnswerRe: I want to use CSS with c# windows application Pin
mghiassi28-Aug-08 8:07
mghiassi28-Aug-08 8:07 
AnswerRe: I want to use CSS with c# windows application Pin
Pete O'Hanlon28-Aug-08 8:11
mvePete O'Hanlon28-Aug-08 8:11 
AnswerRe: I want to use CSS with c# windows application Pin
The Cake of Deceit28-Aug-08 12:45
The Cake of Deceit28-Aug-08 12:45 
QuestionComparind data in a Database with an XML file [modified] Pin
ONeil Tomlinson28-Aug-08 5:37
ONeil Tomlinson28-Aug-08 5:37 
AnswerRe: Comparind data in a Database with an XML file Pin
Manas Bhardwaj28-Aug-08 5:42
professionalManas Bhardwaj28-Aug-08 5:42 
QuestionProblem with loading tiff-picture to Visual C# Project! Pin
bugor7728-Aug-08 5:13
bugor7728-Aug-08 5:13 
Hello!
It is only a part of my source code:
//******************
private void button2_Click_1(object sender, EventArgs e)
{
openFileDialog1.Title = "Choose image to convert:";
openFileDialog1.FileName = "";
textBox1.Text = "";
//shows dialog
openFileDialog1.ShowDialog() ;
//receiving name
CurrentImage = openFileDialog1.FileName;
if (CurrentImage != "")
{
img = Image.FromFile(openFileDialog1.FileName);
//drawing picture
pictureBox1.Image = img;
textBox1.Text = CurrentImage;
//******************
When i am choosing an easy picture(*.tiff extension,size = 474 kb,dimensions:1920*1200) everything is ok, i mean that this picture is displays at my form.
But if picture is more hard(*.tiff extension,size = 10.9 mb ,dimensions:56304*13384) i have such error: Out of Memory(indicates the next string of source code Application.Run(new Form1());)
What i have to do to solve this problem.
Thanks.
QuestionRe: Problem with loading tiff-picture to Visual C# Project! Pin
Mark Salsbery28-Aug-08 6:26
Mark Salsbery28-Aug-08 6:26 
GeneralRe: Problem with loading tiff-picture to Visual C# Project! Pin
ScottM128-Aug-08 10:50
ScottM128-Aug-08 10:50 
JokeRe: Problem with loading tiff-picture to Visual C# Project! Pin
The Cake of Deceit28-Aug-08 12:46
The Cake of Deceit28-Aug-08 12:46 
GeneralRe: Problem with loading tiff-picture to Visual C# Project! Pin
bugor7728-Aug-08 21:03
bugor7728-Aug-08 21:03 
GeneralRe: Problem with loading tiff-picture to Visual C# Project! Pin
The Cake of Deceit29-Aug-08 3:36
The Cake of Deceit29-Aug-08 3:36 
QuestionRetrieving Oracle servers but cannot get host name Pin
Antony Lyell28-Aug-08 4:34
Antony Lyell28-Aug-08 4:34 
AnswerRe: Retrieving Oracle servers but cannot get host name Pin
Wendelius28-Aug-08 7:57
mentorWendelius28-Aug-08 7:57 
GeneralRe: Retrieving Oracle servers but cannot get host name Pin
Antony Lyell28-Aug-08 21:56
Antony Lyell28-Aug-08 21:56 
GeneralRe: Retrieving Oracle servers but cannot get host name Pin
Wendelius29-Aug-08 7:00
mentorWendelius29-Aug-08 7:00 
QuestionInheritance and constructors Pin
Dewald28-Aug-08 4:22
Dewald28-Aug-08 4:22 
AnswerRe: Inheritance and constructors Pin
netJP12L28-Aug-08 4:35
netJP12L28-Aug-08 4:35 
GeneralRe: Inheritance and constructors Pin
Dewald29-Aug-08 3:11
Dewald29-Aug-08 3:11 
AnswerRe: Inheritance and constructors Pin
Pete O'Hanlon28-Aug-08 4:36
mvePete O'Hanlon28-Aug-08 4:36 
GeneralRe: Inheritance and constructors Pin
N a v a n e e t h28-Aug-08 5:21
N a v a n e e t h28-Aug-08 5:21 
GeneralRe: Inheritance and constructors Pin
Dewald29-Aug-08 3:26
Dewald29-Aug-08 3:26 
AnswerRe: Inheritance and constructors Pin
Frank Horn28-Aug-08 4:39
Frank Horn28-Aug-08 4:39 
GeneralRe: Inheritance and constructors Pin
Dewald29-Aug-08 3:31
Dewald29-Aug-08 3:31 

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.