Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags
Member Avatar for udigold1

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

Member Avatar for DeathEater
0
83
Member Avatar for udigold1

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 …

Member Avatar for ddanbe
0
548
Member Avatar for udigold1

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=\"" + …

Member Avatar for alc6379
0
199
Member Avatar for udigold1

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 …

Member Avatar for udigold1
0
226
Member Avatar for udigold1

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 …

0
69
Member Avatar for udigold1

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 …

Member Avatar for Mitja Bonca
0
1K
Member Avatar for udigold1

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 …

Member Avatar for Alexpap
0
103
Member Avatar for udigold1

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 …

Member Avatar for udigold1
0
454
Member Avatar for udigold1

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 …

Member Avatar for Geekitygeek
0
1K