No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
Hi, I have a databound DataGridView with RightToLeft set to true (hebrew). Problem is that all negative numbers displayed with minus sign after the number and not before it, for example :(1,545-). How can I display the numbers correctly (-1,545)? Thanks, Udi
I'm trying to format a DataGridView, with style color, etc. The DGV loads (via buildGrid method) at the startup of the form, as you can see in the constructor's code: [CODE]public Report1(DataSet dsReport1, string sDateRep) { InitializeComponent(); sDate = sDateRep; dsReportGrid = dsReport1; orgDataset(); buildGrid(); } [/CODE] Here's the code …
Hi, I'm trying to parse a csv fiel using a code i've found on line: [CODE] private DataTable ParseCSV(string path) { if (!File.Exists(path)) return null; string full = Path.GetFullPath(path); string file = Path.GetFileName(full); string dir = Path.GetDirectoryName(full); //create the "database" connection string string connString = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=\"" + …
Hi, I have a c# form in which I retrieve data from Access DB. I have Two DateTimePickers so I could choose data between dates. My problems is when I try to retreive data between 19/10/2010 and 12/12/2010 it gives me me data beyond 12/12/2010 but when I try to …
Hi, I wrote a small program which access a DB. The program (executable file, not through install) and the DB are located on a network drive. It works well for all users except for one user. For this specific user, every time I try to load the program I get …
Hi, I have a form with tab control in it and in on of the tabs I got a datagrid. On runtime, whenever I try to display data on the datagrid from a database, the datagrid "jumps" from the tab to the form itself so the tab hides most of …
Hi, I'm trying to setup a DataGridView with ComboBox, but I can't manage to setup the selected value of the combobox. The ComboBox value & display members are from table[1] of a Dataset object, and the rest of the datagrid columns are from Table[0] of the dataset. "noseID" (the primary …
Hi, How do I pass data between two open forms? I have form1 that contains all sorts of definitions for Stocks, Bonds etc located in a DB. Through form1, I can open the form2, which is a form for searching the Stocks. I want to pass the search result from …
Hi, I'm just starting my way in C# and I have this question/problem: I've created a "Windows form" project with several forms, where Form1 is the main form and it is also has a statusStrip control. I've managed to change the text in it with a method in Form1, but …
The End.
udigold1