blah blah blah is here! blah blah » Close

0
votes
0 answers

How to Update a TextBox (in WPF) From a WCF Service?

I understand that to update a control from a non-GUI thread, I need to do some kind of thread-marshal that data from a worker thread to the UI thread, so as to avoid any deadlock. But I am not sure in detail how to do it. I am able to sh ...

0
votes
0 answers

OLEDB access get age from date

lios
30

guys with this code i set an number of years and displays on datagrid the records of peple thad works this years but also i have in the record the birthdays as date format, is any way to display by selecting the age? e.g. select the pea ...

0
votes
0 answers

print a report by supplying the filter condition

i want to print a report which will take its filter condition form the user when the form is running. Please can anyone help me.

0
votes
0 answers

having problem with crystal reports from a session

Hi. I have this asp.net website that generate records of Staff. As you type staff's Id no. in a texbox and click the 'Generate record' button, the page will be redirect to the another page of which the report has to be viewed. In my firs ...

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

where can I down load the CSharpFriends Source Code

Hi, Am new user here , and I just passed over the http://www.csharpfriends.com/SourceCode/ where I found a CSharpFriends Source Code Download link that leeds me for registration and then to here, any help to download the open source cod ...

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

Export database from SQL Server to MySQL

from SQL Server, pointing to specific database, then, Task, -> Export Data... it comes out with this SQL Server Import and Export Wizard: The data type could not be assigned to the column "xxxxxxx" in ".NET Framework D ...

0
votes
2 answers

how to retrieve packets and get client's ip from it

can anybody help me how to retrieve client's ip from request packet received at server side?

0
votes
0 answers

how to retrieve packets and get client's ip from it

can anybody help me how to retrieve client's ip from request packet received at server side?

0
votes
1 answers

C# program to switch updating from Master server to Slave server

assuming that I have setup the Database (MySQL) Replication using Master-Slave configuration, and have synchronized those Master and Slave servers, how can my C# program know that it has to update the Slave server when the Master server fai ...

0
votes
2 answers

copying text from one richtextbox to another

Hello, I'm developing an application in which I need to copy the content of a richtextbox with all its font settings to another richtextbox. the code i use is like this [code] this.chatTxt.SelectionStart = this.chatTxt.Text.Length; ...

1
votes
1 answers

Run WinForms Applications From The Web Browser

is this possible? If yes, it would be wonderful. Several related links below: (1) http://www.theserverside.net/tt/articles/showarticle.tss?id=RunFromWeb (2) http://www.visualwebgui.com/Developers/Resources/Tutorials/tabid/365/articleType ...

1
votes
9 answers

ASP.NET Message Box, Replace "Message from webpage" to some other string

in ASP.NET, say we have some code something like this: protected void RasinBread_Button_Click(object sender, EventArgs e) { if (GlobalClass.RemainingStock() == 3) { Response.Write(&q ...

0
votes
4 answers

Why i cannot access members throught reference?

Hi friend, here i have written a sample code for the client to access a class members in the BLL through another class: [code] namespace WindowsFormsApplication18 { public partial class Form1 : Form { A ...

Feedback