Hi guys, We have a C# Windows application, now user ask if we can enlarge the font size through the whole application. I wonder how should we accomplish it? And one more, if we do so, do we end up massing around the layout? Thanks,
Chris 3
Posts
-
Change Font Size through out the application -
Crystal Report Formatting questionhi, I use the crystal report in .net environment. I have 2 questions: 1)If a report has many detailed records so that they go beyond one page. I want the header (Group By section) to show on the top of both pages. How can I do it? 2)I want each group to start a new page, so I checked New page after choice + Suppress blank section choice in the group footer section, but emputy page will still be there at the end of the report, how can I eliminate the emputy page?
-
DataGrid row: RowState unchange problemThanks a lot! CurrencyManager works fine for my case. Appreciate for your response!
-
DataGrid row: RowState unchange problemHi, I created a datagrid, bonding with a datatable, with some columns editable. If edit the fields in one row, and cursor stays in the same row,RowState is still "Unchanged", although the datatable has the new value now. RowState will be "Modified" only when I move the cursor to another row. But I want to save my changes to database without moving the cursors to other rows. How should I do it? BTW, I use : "if (r.RowState != DataRowState.Unchanged && r.RowState != DataRowState.Deleted)" to judge whether there are changes need to be saved. I don't want to remove this condition because it will cause a lot of unnecessary updates. Thanks.
-
DataGrid Icon column - paint performance issueHi, I have a datagrid with 2 icon columns, I found when the screen needs to repaint, the 2 icon columns slow down the painting, it seems that loading icons is taking time, any idea about how to make loading of icons faster? Thanks
-
Datagrid in WinformThanks a lot, your method is working fine. I just put the row index as the position parameter. Appreciate!!!
-
Datagrid in WinformI have a datagrid showing 200+ records, if user scrolls down to select a row that is off the initail screen, can I set the datagrid to show that part of data around the selected row to avoid user using scroll bar again and again. Thanks,
-
Freeze form when it removing and reloading ctlsI have many datagrid-like line item cotrols in a winform form, after user comfirm changes, I need to remove those controls and reload them on the form. The user interface now showing the whole process of removing ctls and reloading. I do want user to have a wait cursor and the form freeze for a while until the process is done, any idears on how to accomplish it?
-
How to make shift/Ctrl Key press work within Datagrid?Windows standard is to use Ctrl key to select multiple individual items and use Shift key to select a range of items. Now I have winform datagrid, shift/Ctrl are working fine in the row header, but I want them to work within datagrid too. Say you can select multiple fields in the same row or same column. Can I achieve it? Thanks for sharing your knowledge.
-
LinkedLabel in DatagridI want to make a linkedlabel Datagrid column, when user click on it, it will bring up another form. I think probably I should write my custom column style. Does anyone have an example for it?
-
Open Web Browser from WinformIn Winform, I would like to put a linkedlabel, by click it, it will show up IE web browser, ( Browser will totally seperate from Windform, not within a winform control), how can I do it?
-
Datagrid data entry problem in WinFormIn a number column in Datagrid, I want to enter a negative number by using the NumPad "-" key. It does not work at all, but if I use "-" key in number row in the main key board, it works fine. After a further research, it seems that NumbPad "-" or "+" key does not fire a key_down or key_press event,(means no way to capture these two keys). Anyone knows how to solve it?
-
PopUp A form in Multi-window environmentWhile Winform application and other applications(such as words, excel, etc) are running in user's desk top, I want when new message comes within winform application, no matter the status of Winform application is (minimized window, inactive,etc), the message form shows on the top of other applications they are running. It is similar to outlook schedual warnings, when it is the warning time, it comes out to draw your attention away from other things you are working on. Is it possible to achieve it? Thanks