blah blah blah is here! blah blah » Close

0
votes
8 answers

Save/Load Class

q12
129

SaveLoad_File.cs [url]http://www.sendspace.com/file/11pq8w[/url] Warnings_File.cs [url]http://www.sendspace.com/file/31yohm[/url] _______ Im still a learner so... i need a lot of help. Actually there are 2 classes (SaveLoad_File.cs a ...

1
votes
3 answers

load database from text file

say I have a table named XY_values with columns X_values and Y_values. now, I have a text file xy.txt which contains those x values and y values, with x values in the 1st column and y values in the second column. is there any SQL comm ...

1
votes
4 answers

C# load textfile contents to ListBox

My code below is able to easily load textfile contents to a textBox, with Multiline. FileInfo myFile = new FileInfo(@"D:\output.txt"); TextReader myData = myFile.OpenText(); textBox1.Text = myData.ReadToEnd(); myData.Close ...

0
votes
0 answers

crystal report fail to load

Hi, i have devolped an window application in which i have implemented crystal reports but some of my customers don't have a C drive, so widows is installed on D or E or whatever but not C:\ drive.so when my client view any report an exce ...

1
votes
1 answers

Open XML Document Once only

Hi I am toying with an APP and I open an XMLDocument in the main form. I am trying to access the already opened XML document from a userControl... However I tried using a getter/setter (loadedXDoc) in Form1 then using Form1 f1 = new F ...

0
votes
1 answers

Load Pictures into PictureBox from DataGridView

I have a table from a database, with fields like Description and Price and Picture. I am able to load different rows of Description and Price onto the DataGridView. As the Picture size is too big to insert into the rows, I have to put the p ...

0
votes
2 answers

Load image from binary data from sql

Hi, I have binary data in my sql database that is of type image. Now I want to load this binary data to an image, have you any idea how I could do this? Thanks.

Feedback