April 21st, 2012 11:22 AM
hello im trying to copy the contents of my datagridview into an sql server. here's the code
void BulkInsertToSQL(DataTable dt, string tableName)
{
using (SqlConnection...
April 17th, 2012 10:57 AM
hello i need to make a condition in my report where it will take the values from a sql database that were modified this month. in the db it is stored in this pattern-"April 2012" (for example). how...
March 14th, 2012 10:55 AM
hello im having a problem retrieving selected value from a combobox in datagridview. my datagridview is getting its data from an sql database. so the comboboxes are filled during runtime and i dont...
February 21st, 2012 10:38 AM
sorry for being so naive, i meant when i try to put a panel on top of another panel,the panel at the back becomes invisible because of overlapping.my intention is to put a set of controls like...
February 21st, 2012 09:24 AM
panels are nice but working with them is a pain when im changing their visibility modes.can anyone suggest a better option that will work like a panel but i can work with better ease?
February 21st, 2012 04:40 AM
when im entering values in a richtextbox i want to store the new line feed from it and store it in sql database so that i will be able to pick the values from it.how can this be accomplished?is there...
February 12th, 2012 06:25 AM
hello guys im so confused that i dont even know where/under which category i should be posting it. i want to build a desktop application that will get data from bittorrent. the data will be the...
January 28th, 2012 04:47 PM
hello im building an application which requires retrieval of mp3 files from folders and show them in a treeview.but it's taking a lot of time and the screen freezes showing the following error-
...
January 22nd, 2012 04:23 AM
hello im trying to retrieve data from an entire row in datagridview.i know how to get data from a particular cell but i want to get the particular row into an arraylist.all i can think of is this
...
January 17th, 2012 12:40 PM
hello there, i want to build a simple karaoke using c#.but this type of application is totally new to me. could you guys please provide me some briefings(links to resources e.g.) how this can be...
January 5th, 2012 07:27 AM
hello i'm trying to do a simple little thing, i have two forms in my application, at first form1 comes into view,then i press a button and form2 comes.all i want is that when form2 is visible form1...
November 26th, 2011 12:37 PM
thank you very much for your help. yes my problem has been resolved and you have cleared yet another confusion of mine which was that i didnt understand why the savefile dialogbox was appearing...
November 26th, 2011 09:08 AM
hello there! Im having a strange problem with saving files. im trying to use saveToolStripMenuItem and saveFileDialog to save an array of strings into a text file. when i debug the program...
November 25th, 2011 03:16 AM
yes the order matters.and one more thing,the lists dont have to be the same,i need to check if certain elements are there in the list
November 25th, 2011 12:49 AM
hello there! I've got two arraylists named a1 and a2. I need to check if these two arraylists have the same contents. All I can think of is this------
for (int j = 0; j < a1.Count;j++ )
...
November 23rd, 2011 09:31 AM
hello there, i want to show all the elements of an arraylist into a single messagebox.im at a loss about what to do.because messageboxes only take strings as parameters, how can i concatenate an...