Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~10.8K People Reached
Favorite Forums
Favorite Tags
Member Avatar for empyrean

Hi I am trying to run this C code in Visual Studio along with a set of Cpp files. It gives the below errors error 2143 : syntax error : missing ')' before '&' error 2143 : syntax error : missing '{' before '&' error 2059 : syntax error : …

Member Avatar for gusano79
0
268
Member Avatar for empyrean

I am trying to find the way to generate bezier curve using de casteljau algorithm for one of my assignment here. I am able to generate bezier curve using normal method but unable to start on generating using the above algorithm. It will be of great help if someone can …

Member Avatar for raptr_dflo
0
2K
Member Avatar for empyrean

Helo all, I wanted to parse EMBL format like file to fasta. i cannot use bioperl because this is not complete EMBL format. so please suggest me how to get this done.. [CODE] ID 013789-0068 PS TBD OO huringiensis OS ringiensis OX SI 68 RA RL 2010. OKAYAMA UNIVERSITY,JAPAN LAMB …

Member Avatar for thekashyap
0
290
Member Avatar for empyrean

Hello all I am dealing with this problem. I need to attach files from my desktop and store a copy of it in server and the url of the file location should be stored in a database. Can this be done using C#? please suggest me how to do it …

Member Avatar for darkagn
0
130
Member Avatar for empyrean

Hello.. i will try to be clear.. here i am working on a datagrid. in datagrid one column is editable as i am passing DataGridTextColumn to it and holding the data when users enter data into it and writing back to database. i am saving to database using datagrid_celleditending event …

Member Avatar for "ICode"
0
150
Member Avatar for empyrean

Hello all.. i wanted to merge two datatables.. infact its only one which is original version and modified version.. merging both to find the differences and store them in another datatable. but for some reason merge is not working.. here is the code which i have written. [CODE] public static …

Member Avatar for chiwawa10
0
174
Member Avatar for empyrean

helo all i wanted to import .csv file to my application [CODE] private DataSet ReadExcelData(string sFilePath) { DataSet dsOutput = new DataSet(); string sConnection = string.Empty; try { if (TypeExcel == "Excel 12.0 Xml") { sConnection = "provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + sFilePath + ";Extended Properties=\"Excel 12.0 Xml;HDR=YES;IMEX=1\""; } else if (TypeExcel …

Member Avatar for empyrean
0
2K
Member Avatar for empyrean

Hi.. i have imported a excel in to datatable which contains 5 columns and some thousand rows. I have to do two level validation. First i have to check whether the column belongs to specific datatype. If so, then i need to check each and every cell in that column …

Member Avatar for anoncodemonkey
0
957
Member Avatar for empyrean

Hello.. i have two datatables with only one column each. i wanted to compare those two columns in two datatables. here is the example dt1 apple orange peach banana dt2 apple peach mango apricot now i want to compare dt2 with dt1. dt2 is bound to a list box. so …

Member Avatar for mshauny
0
151
Member Avatar for empyrean

Hello Everyone I have the following Table Name State Rob California Rob Texas John California John Virginia John Texas John Nevada Andrew Texas Andrew Virginia So i have this information in a datatable and two combo boxes are used on UI for this table. First combo box has to display …

Member Avatar for empyrean
0
114
Member Avatar for empyrean

We have an application developed in WPF. i wanted to implement one functionality here. my main window, lets call it as MainWindow. And the windows that can be opened from the MainWindow are independent. they are not child windows. They have links from main window. MainWindow - Window1 - Window11 …

Member Avatar for Geekitygeek
0
112
Member Avatar for empyrean

Hello all i am using datagrid and it doesnot have auto numbering. so i used the following method to number in rowheader but the problem is the numbers are repeating and when they sort a column they are rearranging themselves..please suggest a way out for me In XAML page i …

Member Avatar for ddanbe
0
2K
Member Avatar for empyrean

Hi i am creating new rows and columns in datatable and passing the data from another datatable..the following code is not working..please suggest me where i am doing the error [code] DataTable dtHybridNames = new DataTable(); dtHybridNames.Columns.Add("NAME", typeof(string)); dtHybridNames.Columns.Add("CHECK", typeof(string)); foreach (DataRow drow in ds.Tables[1].Rows) { DataRow dNew = dtHybridNames.NewRow(); …

Member Avatar for empyrean
0
83
Member Avatar for empyrean

hello everyone.. i have a question.. i am using datagrid and binding the columns using datatable..i have grid with columns Area, name, date, country, comments. Now i have to filter the data using two list boxes with contains area and name distinct values. if user selects one location or more …

Member Avatar for nick.crane
0
140
Member Avatar for empyrean

I have two list boxes in two different forms.. I load the data in to second list box using first list box...both have exactly same values.. but in first list box user selects multiple selections and i wanted to show them in second listbox as selected.. i have the following …

Member Avatar for Geekitygeek
0
3K
Member Avatar for empyrean

Hello everyone..i am newbie in C# programming.. i have two different forms..Form 1 and Form 2. Users will select multiple items in form 1. i wanted to duplicate the listbox in form 1 to form 2. please suggest how to do..

Member Avatar for empyrean
0
80