Click here to Skip to main content
15,893,564 members

Videos


1. datagrid.ItemsSource = datatable.AsDataView(); Equivalent in Xaml
I have a project in wpf with Xaml ...
Vinay Swa Updated: 17 Sep 2013
Rating: ( (No votes))
2. STUB for WCF Service testing
Hi,I had created a very basic WCF service, which provides the functionality to add two numbers.//interface[ServiceContract]public interface IService1{ [OperationContract] int Add(int valueA, int valueB);}//implementation by classpublic class Service1 : IService1{ ...
Programming Languages » C# 4.0 »
Vinay Swa Updated: 7 Aug 2013
Rating: ( (No votes))
3. Unsafe Code - Problem in VS-2010
Hi.... i had developed one user control (C#) in winforms with some unsafe code. i had executed the application with VS-2008, it was successful. When i am trying to execute the same program with VS-2010, i am having problems. The error message is "Attempted to read or write protected memory....
Programming Languages » C# 3.5 »
Vinay Swa Updated: 2 May 2012
Rating: ( (No votes))
4. Postgres Database Backup/Restore From C#
Postgres database backup/restore functionality implementation.
Database Development » PostgreSQL »
Vinay Swa Updated: 4 Apr 2012
Rating: 4.75/5 ( (7 votes))
5. Using MSMQ , Backgroundworker Threads in C#
This article covers MSMQ functionality exposed through the System.Messaging namespace.
Vinay Swa Updated: 29 Mar 2012
Rating: 4.89/5 ( (16 votes))
6. What is the best way to save the Datagridview Content ?
Hi, options are - XML, Excel, CSV. In these i will prefer CSV files. It is very simple to transfer the data from datagridview to CSV files. CSV, comma separated values, files are commonly used to transport large amounts of tabular data between either companies or applications that are...
Vinay Swa Updated: 28 Mar 2012
Rating: 3.00/5 ( (3 votes))
7. Save Picture in database and Reterive and Display in Picture Box by C# .net and back end MSACCESS
Hi,Go throw this linkhttp://www.csharpfriends.com/Forums/ShowPost.aspx?PostID=79870[^]Total functionality is provided by the link.Regards,Vinay
Vinay Swa Updated: 28 Mar 2012
Rating: 3.00/5 ( (1 vote))
8. gridview not showing
Hi, Your ques is not clear;To which data want to bind the control?Control not existing means- Try to remove the control totally and drop the same control from Toolbox, then proceed. For some conditions you may loose the control also.reagrds,Vinay
Vinay Swa Updated: 28 Mar 2012
Rating: ( (No votes))
9. Define polygon over image
Hi, drawing is the basic programming for C#; First create a sample of windows form, and drop the picture box on that.and replace the code to application* this is for total form class. * and add the required events...
Vinay Swa Updated: 28 Mar 2012
Rating: ( (No votes))
10. Open second formin c#
Hi, when you create application it is provided with 1 from. Just Right click on the project and add new form. then create a object for the Form2 in Form1 Class.Form2 objForm2 = new Form2();objform2.Show();Further, if you want to change any thing in Form1 form Form2, better to...
Vinay Swa Updated: 13 Mar 2012
Rating: ( (No votes))
11. Resolution Free application using ResolutionFreePanel
This Panel is developed as a Custom Control. Place whatever the control on this panel, if resolution is changed then the controls position and the size is changed w.r.to resolution
Vinay Swa Updated: 12 Mar 2012
Rating: 3.75/5 ( (3 votes))
12. Basic query related to C# 4.0
This is the Common Problem faced with windows forms.For my project also i had faced the same problem. Started the development using the TableLayout. Then at final stage it was with above 100 TableLayout components. But it is not advised.By Using the DataBindings Property of the control, we...
Vinay Swa Updated: 9 Mar 2012
Rating: 1.00/5 ( (1 vote))