blah blah blah is here! blah blah » Close

0
votes
5 answers

C# application, Read from MySQL Database. Deployed into other machines

if I have a C# application which reads from a local MYSQL database, and when I compiled that C# application, I want to deploy that compiled application into another machine or notebook. Does that mean that I have to re-create the same datab ...

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
0 answers

One dataGridView for many different tables from same database?

it seems to me that for one dataGridView, it can only be used to display for only ONE table from a database, is it true? I want to implement something such that when user press different buttons, it will display on the dataGridView differen ...

0
votes
1 answers

Convert String from HEX to DEC to ASCII.

I need to have this conversion, from HEX to DEC to ASCII. or if possible, direct conversion from HEX to ASCII. e.g input string = 01344583 (HEX) intermediate string = 20202883 (DEC) string abc = "01344583"; int def = i ...

Feedback