.net Winform Grid Alternatives?

Dec 7, 2010

I am using vb.net / Winform 2010.I am looking for a free (or very cheap) alternative to the DataGridView, one that looks more like what I see on ads for XTraGrid. Something that will multiple lines per records, and for lines to be rolled up, and expanded by clicking, etc.

View 1 Replies


ADVERTISEMENT

Alternatives To RichTextBox?

Sep 8, 2010

For sometime now whenever I am in need of formatted text I have been using RichTextBox control and save data to RTF format. However lately I started using RTF editor control that allows you to insert images into rtf. And although this works, the file sizes grow immensely.I was wondering if nowadays there are any better alternatives (preferably available for free) that people can use in windows applications for viewing and editing documents.

View 1 Replies

Any Alternatives To Codedom?

Jan 5, 2011

Are there any alternatives to Codedom? THe reason I am asking is because Codedom is not letting me use pointers(unsafe code) which is a must in my project. I have hear of the System.emit namespace though.

View 2 Replies

FileLen And LOF Alternatives?

Nov 19, 2010

give me some alternatives to FileLen & LOF?

View 3 Replies

C# - Cross Platform Alternatives To WPF?

Mar 31, 2011

I'm thinking of porting my application from VB.net to the C# based MONO project, so it can run on both Windows and Mac. However, I am in need of a Mac-friendly alternative to WPF. It has to have very similar functionality. QML (by QT) is not a viable option, as it costs far too much money for us.

View 3 Replies

PaintEventArgs.Graphics Alternatives?

Jan 1, 2010

is PaintEventArgs.Graphics the only way to get the Graphics of a Form?

View 10 Replies

VS 2010 Alternatives For The Old Functions?

Sep 21, 2010

When I try to code in VB2010, I usually unmark the reference to Microsoft.VisualBasic. Because I do not want to use the legacy functions of VB6. I want to complete walk in .Net path. And I have found some alternatives for the old VB6 functions. But the rest not. Where can I find the list of those methods or classes (alternatives for the VB6 functions) ?(For eg: when I tried to find the difference of 2 dates, I couldn't find any other alternatives. So, I came back and used the Microsoft.VisualBasic reference for using DateDiff())?

View 24 Replies

VS 2008 Drag And Drop And Alternatives?

May 20, 2011

I'm working on a small utility program and found that I have a need to copy the contents of listboxes, textboxes and other control from one to another.

I just started playing around with Drag and Drop but it seems lacking a bit...for instance, if I wanted to drag the contents of a listview to a text box, it doesn't look like I can do that easily if at all.

Can you use a drag and drop to copy the contents of different control types easily?I thought about using the drag and drop method for notification of the intent to copy the contents and then I would code the copying.

The idea (although I know it will be slow but that is okay for this utility) to copy the source to a textbox and then from the textbox to the target. The content won't be that large and speed is not a concern at this point.

Here is my issue if I have to do it this way.

1 - How can I use the control names to do this?

2 - How do I get the target control name?

I figured I would create a function that I would pass the source control name and the target control name and based on type, perform the appropriate method of copying the data.

I haven't figured out a way to get the target control name. I can use activecontrol.name for the source.

View 1 Replies

[2005] TabControl: Beautifying It Or Alternatives?

Feb 18, 2009

I have the need to constantly use the TabControl but somehow its current look is boring, is there any tricks out there to make it more interesting? Or what are the alternative controls that I could use to replace it?

View 3 Replies

.net - Alternatives To SelectedIndexChanged That Don't Fire On Form Load?

Dec 24, 2009

I'm developing in VB.NET with Visual Studio 2005.I have a ComboBox (myCombo) on a form that gets populated within the Load method.I also have handled myCombo.SelectedIndexChanged to change a label on the form.

Edit: The way I added the event handler was by double-clicking on the combo box on the designer. Skeleton code then came up in the code view.It looks like what's happening is when the form loads, SelectedIndexChanged gets fired each time an item is added to myCombo.This isn't what I want, but I'm thinking there's another event handler that only gets called when the user changes the selection.

Here's some code for what I have:

Private Sub myDlg_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' this is all I do with myCombo in this sub
list = GetListOfItemsToAdd()

[code].....

Update: The solution I used was to remove the Handles clause after the event generator, and add this before the "End Sub" above:

AddHandler myCombo.SelectedIndexChanged, AddressOf myCombo_SelectedIndexChanged

View 4 Replies

Alternatives For Accurately Representing Decimal Variables In C++

Mar 4, 2010

I am currently working on a program that takes Visual Basic data in the form of a text file, and then stores this data in C++. Some of the data from Visual Basic is of the type Decimal. C++ has no built in type equivalent to decimal. I don't want to use double because there is a possible loss of significant figures if the numbers are large enough.One option is write my own decimal class.

View 2 Replies

Alternatives To SelectedIndexChanged That Don't Fire On Form Load?

Jan 16, 2011

I'm developing in VB.NET with Visual Studio 2005.I have a ComboBox (myCombo) on a form that gets populated within the Load method.I also have handled myCombo.SelectedIndexChanged to change a label on the form.Edit: The way I added the event handler was by double-clicking on the combo box on the designer. Skeleton code then came up in the code view.

View 2 Replies

.net - Automation Scripting Tool Boston Workstation Alternatives

Dec 14, 2011

I been using Boston workstation for a project but the version i have is about 8 years old and it only works with terminal not GUI apps. what alternatives are out there for automation scripting Gui apps in visual studio.

View 2 Replies

Exit Grid With Ctrl-TAB When Grid Is On A Tabpage (onkeydown Works When Grid Not On Tabpage)?

Jun 2, 2010

winforms .net 3.5 Ultrawingrid 9.2 In my subclass of Ultrawingrid.Ultragrid :

[Code]...

This works fine. But when the grid is dropped on a TabControl tabpage, the ctrl-tab looks very different to the sub above. e.keycode is seen as controlkey {17} I realize that by default cntrl-Tab moves between tabpages. I need to override this behavior. My thought is I probably need a subclass of the tabControl which will pass the keycombo through just as the form does but I confess to being clueless as to how to accomplish that. I tried to override the onkeydown of a tabcontrol subclass and just issuing a return and not and base call to onkeydown if the ctrl-tab combo was pressed but it seemed to see the e.keycode as controlkey as well.

[Code]...

View 1 Replies

Passing Value From One Winform To Another Winform?

Jul 7, 2010

A Form is to Accept User Name and Password from user, after verification the form should display another form that will accept user's full data. When a user press the Ok button, the information entered on this form should be display in another form (Showing the user what he/she has entered)

i have Design the Firs Form and the second form, how can i pass the information entered on the second form to third, and also what will the code look like I need help on this or Code Sample?

NB: i am trying create an instance of the second form in the third form and declare a variable in the third form that will holed the value, but still not working I want to learn .NET Programming in VC#, ASP.NET And VB.NET. I am student and really get excited when it comes to programming

View 4 Replies

MVCContrib Grid Overriding RowStart And RowEnd - The Row Start And End Are Rendered Above The Entire Grid

Jan 26, 2011

i'm using the MVCContrib grid trying to override the start of a row and the end of a row. It's not working as advertised. This is an extract from my MVC2.0 view.

<div id="chargestable">
<br />
<% With Html.Grid(Model.InvoiceListingInformation)
.Columns(Function(column)

[code]....

The stuff i put in the begin row and end row functions is being rendered above the grid entirely.(PS i can't just use the attributes as i need to wrap the row in another html element)

View 1 Replies

Showmodaldialog - Display The Text Entered In The Grid - Access The Grid In Child Window

Mar 11, 2010

i have a prob that i have a gridview on the parent window. when i open a child window using showmodaldialog, i enter some data in the textboxes. now when i close my child window i want to display the text entered by me in the grid. i want to know how can i access the grid in child window

View 1 Replies

Make A Over Sized Grid Or A Grid Larger Then Viewable On Screen Resolution?

Jun 9, 2012

Trying to understand the basics of grid design so how would I make a over sized grid or a grid larger then whats viewable on my screen resolution? Below is a simple chart describeing what i want to make roughly. I would like to build the grid in "blocks".[URL]..

View 16 Replies

Bind Datatable To Grid But Unable To Fill Grid

Apr 15, 2012

The below code was written to bind the datatable to the grid, but i am unable to fill the grid.I am unable to fill the datagrid. [code]

View 1 Replies

C# - When Click On Grid Row To Get Content From Specific Column Of The Grid?

Mar 2, 2010

I have UltraGrid and i need when i click on grid row to get content from specific column of that grid. For example if I click in cell of fourth column then i need to get value of first column of the same row where i clicked.

View 1 Replies

Data Grid View Header Grid Color

Jan 14, 2010

This is a VB .NET application where we are showing the output of a SQL statement in a Datagrid view. using .NET 2005.We need to get the seperators of the headers on the grid control to be the same colors as the GridColor on the form. See the picture below:We've tried looking through all of the properties of the DataGridView control, and found some interesting things that looked promising such as the DataGridViewAdvancedHeaderStyle, and DataGridViewHeaderBorderStyle, but none of it seems to allow you to change the colors on it.Does anyone know how to do this without remaking the entire thing with a GDI+ control?

View 2 Replies

Recommended Alternatives For Speech Recognition Other Than Microsoft Speech Libraries?

Aug 11, 2010

recommended alternatives for speech recognition other than Microsoft Speech libraries?

View 2 Replies

DB/Reporting :: Subtotalling Grid Per Row Using Flex Grid?

Dec 26, 2008

need to have a summation field in each row of a grid in visual basic. Each row needs to calculate the remaining quantity of its row and all other rows beneath it. Thus the subtotal field in the 1st row would equal the sum of the shown quantity field for the entire grid.The next row would include its value and all those beneath it. Its subtotal value would be less than the subtotal of the row above it (by the quantity value of the 1st row). My code for the grid is very simple I just can't figure out how to add this iteration.

View 3 Replies

Draw A Grid And Make A Map Using The Items On The Grid

Dec 28, 2009

I have an Idea but im not sure how to get started... Its a map maker... There will be a panel on the side for items and it will draw a grid and you can make a map using the items on the grid.

View 5 Replies

Net Property Grid. Is There A Way To Let The Grid Manipulate Object In Different Way

May 31, 2009

As I understood , The property grid is given an object which it can manipulate by extracting its Properties using reflections.

My problem is that I have a set of Parameters that is determined during run-time , thus I can't staticly compose a class with properties to represent this set.

I have two idea in mind to solve this problem but both are complex and will probably consume lot of time , infact i will say they are not practical under my time constraints. One is to use Reflection Emit in order to define a class dynamically and the other is to dynamiclly build a C# source file and then compile it using CodeDom.

Can Property grid behave in a different manner( other then extracting the Properties of an object using reflections ) that can suite my problem?

I want to say that the reason I went to the property grid from the begining was its ability to provide realy nice Data Retrieval UI for common types.For color you autometically get a palette , For dataTime you automatically have a nice calender. I would like to get those things automatically If possible.

View 1 Replies

Scroll The Grid, So That The Row That The Program Is 'looking At' Is In The Middle Of The Grid?

Jan 18, 2011

Visual Basic 2005 I have a DataGridView on a form. It's bound to a DataSet, and I'm working by way through the dataset doing various things to the records based on the "status". What I would like to do is scroll the grid, so that the row that the program is 'looking at' is in the middle of the grid.

View 1 Replies

Silverlight Data Grid With Grid Splitter?

Oct 13, 2011

I have the below code that i am trying to have two datagrids with a grid splityter in the middle. The split seems to be working fine but the issue i am having is when I populate the datagrid it is growing in height and changing the splitter instead of leaving the height alone and adding scroll bars.

What simple thing am I overlooking?
<Grid x:Name="gdHistory" Grid.Column="0" Grid.Row="2" >
<Grid.RowDefinitions>

[code].....

View 1 Replies

Vb 2010 - Map Editor - Making The Grid Invisible If De-deselect The Option "Grid On"

Jun 12, 2011

I have a few problems with making a map editor, how to make one reply and ill give you my msn well actually this problem: its not making the grid invisible if you de-deselect the option "Grid On" because the rect's have already been drawn. So I need to know how you can delete them.

[Code]...

View 4 Replies

[2005] VSFlexGrid 8: Create A "sub-grid" Inside Existing Grid Control?

Feb 13, 2009

I have a FlexGrid control in my Windows application that contains a row of data. The data in this row is related to even more data that won't all fit on the same row. For Example:The main data row contains Username, Last Name, First Name, Middle Name, E-mail Address, Phone Number, etcA secondary row to this might contain user permissions to certain resources, such as File Server Access, FTP Access, Remote Access, etc.Now, I can use the subtotal and outline capabilities of the VSFlexGrid to make a second row, but the column widths are still bound by those set for the main data row. Additionally, I can't put real "headers" on the supplemental data. I have to fake it by creating an additional row, setting the background color of that row to gray, putting the header strings into those fields, and then adding the next row with the actual details.

What I would like to do is create separate grids for these secondary rows and "embed" them in a blank row of the existing FlexGrid control directly under the related main data row. This would give me the ability to use a different number of columns, to format these columns independently of the "parent" FlexGrid settings, as well as put a new header row for the new grid that identifies its data.In other words, I'd like to somehow make a "child" grid that's related to a particular row of the "parent" grid (not the entire grid itself). I don't know if this is possible, and if there is another way for me to accomplish this goal, I'm all ears. However, if it IS possible, I'd love some advice on how to implement it.

View 2 Replies

.net - Selecting A Row(s) With Multiple Columns From A Grid View And Add Them To Another Grid View?

May 6, 2009

I have students who will be enrolled into a course. The student grid view has many columns like client_no, student_name, date_of_birth, address, etc. There are over 100000 students so I will need to filter the student grid view to find the correct student to enroll in the course. Once they are found, the user selects them and somehow moves them to the enrolled grid view. If a student drops out then they would be removed from the enrolled grid view.This process needs to be easy to understand and use. Are there any examples available or other suggestions on how to do this?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved