blah blah blah is here! blah blah » Close

0
votes
1 answers

Passing Values from one form to another

Hi good morning everyone , I just need a hand to help me on my little problems. I have 2 forms, What I just need is that the 2nd form will be my data entry form. Every data that I entry on my form 2nd form is that I need it to display on my ...

0
votes
0 answers

validating listview data against xml schema

Hi, Can someone tell me, is it posible to validate listview data against an xml schema when user edits listview column data in c# win forms applications. Thanks. Regards,

0
votes
1 answers

What data type would be best for storing the money formatb of data in C#?

Hi, I am working on a website which is supposed to deal with users bank transactions. As it is going to deal with money on a higher scale. I want to know what will be the best fit data type for storing the money values in C# language such ...

1
votes
1 answers

accepting data over a port.

I have an application that sends data over a port. I need to accept the data (on the same system ) and then write it in a text file. Now the problem is that I don't know how to go about doing it. I am working on Windows XP. And any platf ...

0
votes
0 answers

insert values in database in image format from double format

how to insert values in a database attribute in image format from double format in a program. trying to add peak data double(X, Y)in a table.

0
votes
2 answers

Keeping data in a simple application.

Hi. I am relatively new to C# but I have a little experience in Java. I am making an application that keeps records of my work hours. I have two textfields, two comboboxes and a calendar to pick the date. In the two textfields I add the ...

0
votes
0 answers

Why my report doesn't show data!

Hi there, Right now I'm in big trouble, I have create a simple application that use Report (rdlc). It works in my computer good but it doesn't work at the client(s) computer properly. At the clients it doesn't show the data from SQL S ...

0
votes
1 answers

System.Xml.XmlException: Root element is missing.

Hi..I am using a RSS Datasource (provided by rsstoolkit of asp.net) to retrieve the list of latest newspaper articles and display them in a list view..I have three URL from which I am retrieving the articles..when I click on the first URL.. ...

0
votes
1 answers

C# - Binding data on instance?

I have a small 'rolodex' program that opens a form for each person in my database at runtime (each person is a row in the db). I have that part working (thanks to some help from the lovely people here!), but I have a new problem. I am no lo ...

0
votes
0 answers

data select problem

hello in a c# program i'm using the following code to fill a listbox. (it's a program to plan drivers jobs, the code returns a list of drivers who didn't receive a job yet for the selected date) [code] private List<string> Get ...

0
votes
1 answers

inserting data into ms acess database from textboxes in c#

can somebody help me with this. please i need some code snippets or tutorials for it :D.. thanks.:D

2
votes
12 answers

Loading millions of rows of data from MySQL database into C# application

I have to load in millions of rows of data from MySQL database into a C# application. It takes more than 5 minutes for the complete set of data to be loaded. Does it make sense to do multi-threading for my case? If yes, how should I do it? ...

0
votes
2 answers

Why out of range exception comes?

sanjib
226

Here is my code: When the Update button is clicked, a RowUpdating event is raised. Generate its event handler : [code]// Update row protected void grid_RowUpdating(object sender, GridViewUpdateEventArgs e) { // Retrieve updated d ...

0
votes
1 answers

custom data bindings

Is there a way to do a custom data binding? For example: [code] internal class LocalSettings // this class only stores per-session // settings that are not saved to disk { internal bool theCheckbo ...

1
votes
1 answers

Sorting in Gridview

sanjib
226

I wanted to show datas in a GridView in reverse order. Uasually after inserting a data into database, the gridview shows it from the first one and the last one comes at the last. I want to see the latest/last one first, like something happ ...

Feedback