Telerik Winforms Controls Free For MSDN Subscribers?
Jan 6, 2010for MSDN subscribers:[URL]
View 6 Repliesfor MSDN subscribers:[URL]
View 6 RepliesI may have mentioned it before but I can't find a thread in this forum where I may have previously mentioned this!!
[Code]...
is there any free msdn library 2005?
View 5 RepliesSee this link.>> [URL]...Click this link to see how to insert a picture into a forum post.
View 1 RepliesI go about upgrading the Telerik ASP.NET controls? I am currently using the Q3 2008 release and I just recently bought the Q1 2009 SP1 release. How do I upgrade my projects? Do I need to uninstall the old one and install the new one or just install the new one? Also how do my projects get upgraded? Also, what about my projects that I have "live"? Do I just need to upload the new DLLs and and change my web.config?
View 4 RepliesAnybody have experience with using Telerik controls/tools?
View 26 RepliesWhat would be the best forum on MSDN to ask a question about the Validation Web Controls. And using them with ASP.Net?
View 1 RepliesI'm developing a mobile project that I really want to look good. I love the way the iPhone controls.
View 2 RepliesIs it possible to set a project default for VB.NET winforms projects so that the default Modifier for controls added to winforms is Private (not Friend)?I know there's a "modifiers" property in the properties window so I can set it for each individual control however I would like to change the project so from now on myself and other developers have to specifically decide to change from friend to private. (Which I would strongly discourage them from doing).I believe there is no way of doing this, but on another forum a while ago someone mentioned it would be possible with an add-in (but didn't name the add-in or where to get it).
View 1 RepliesPossible Duplicate: Best Free Controls for .NET For many usages, for many developers, (including me) it's required to use free (Win or web) components in their projects. Sometimes they doesn't work correctly.
View 2 Replieswhere i can download some free toolbox controls for Windows Form for .NET?
Ive had a look around and im a student and cant afford the typical 1000 dollar lisences?
I get a message, "The MSDN collection does not exist. reinstall MSDN." When I try to access any of the HELP features of Visual Basic 6.0. I do not have an install disc for this. Is there a download or a place I can get this?
View 7 RepliesI am trying to see all the labels in Me.Controls and when I use:
For Each Control As Label In Me.Controls.OfType(Of Label)()
MsgBox(Control.Name.ToString)
Next
it only shows the labels that have NOT been renamed
I am currently developing a WinForms application in C# and require a table control that can contain other UI controls.In the following example, I would like the Links column to contain link label controls:
| ID | Name | Links |
-----------------------------------
| 1 | n1 | link1, link2, link3 |
| 2 | n2 | link1 |
Is there one I can use 'out of the box', are there any good third party ones?
Has anyone tried using controls from different sources into their application that uses winforms? Will these combination of controls work together?
View 3 RepliesI'm used to webdeveloping, and when I work with databases, I usually use some text for the Text-property of a radio button, and the row's ID as Value-property. This makes it very easy to save to databases.
Is the an equivalent in winforms for the Value-property, or will I have to identify rows based on the text in the control?
I have form in VB.Net 2010:
I want to click-drag multi rows in dgRegister and Date, Course ID to drop in dgCourseStudent with column Date, Register ID, Register Name and Course ID.
How to code this in vb.net language?
I have a bunch of buttons on a form and when the person presses TAB I want the focus of the controls move in a specific order.
View 3 RepliesI have a WinForms application that I need to dynamically add controls to at runtime. I searched for this and I was initially led to the TableLayoutPanel (TLP).
View 4 RepliesI'm writing a VB.Net WinForms application that has multiple data girds on any given form. On one such form, the data grids are loaded into split containers which in turn are located on a tab control. The load method for each data grid is threaded so that an animated "Loading" form can be shown. I would like to position the new loading form (which is smaller than the grid) on top of, and preferably in the center of, the grid that is loading. Whats the easiest way to find the grids location within the main form so that I can adjust the loading forms location?
View 1 RepliesOur shop primarily use "ADO objects" (I'm referring to DataSet, DataTable, and DataRow) for marshaling around data and manipulating it on forms and in grids. We are experimenting with creating shop-flavored counterparts to the native ADO objects so that we can impose our in-house standards on top of them. Implementing this is straightforward with one exception: I want our objects to be bindable to controls.
I'm aware of IList, IBindingList, BindingSource, etc. and have looked at and experimented with these, but I am falling short when it comes to making a class with no hard property names bindable. The native ADO objects are not strongly typed by default. You have column values that you access via the Item property (e.g. row("Age") or row.Item("Age")). The binding examples I've found online deal with strong-typed objects (e.g. row.Age). Essentially, we want to create custom ADO objects (not inherited from the native ones) that still retain their ability to bind to controls. In a grid I would expect to see columns Name, Age and Occupation from a row where these properties are exposed via row("Name"), row("Age") and row("Occupation"). This must be doable as this is exactly what the native DataTable and DataRow provide.
I do have Visual VB.NET 2008 Express installed, SQL Server 2005 express installed, and I do know how to start a brand new project in VB.NET, and then add the database to the solution explorer, modify the tables/fields, etc. I know how to create a WinForm, add some controls (and name them and whatnot).....
So in MS Access I know how to use VB in the Code-Behind-Form to use the form in an unbound manner, and insert data into the tables via Visual Basic with SQL statements. I am looking to be able to begin the same sort of thing here, because I guess I have to start somewhere?
Right now I am building a filter based on user input (textboxes and comboboxes) by a bunch of if statements. There must be a better way. Here is my current code:
Private Function BuildProductsFilter() As String
Dim RawFilterResults As String = ""
If Not CompanyNameComboBox.SelectedValue Is Nothing AndAlso Not
[code].....
All my forms inherits from one base form where we handle background paint and set standard properties. Recently, I think of cheching if the app is running on Vista or Later to use Segoe UI font, and I added this. The problem is than inherited forms changed sizes and their inner controls changed also... even PictureBoxes! The controls and forms seems to be thinner (in width), so square picturebox became vertical rectangules!
[Code]...
In connection with a windows form's text control the keypress event handler provides a key's identity through the KeyChar property of the event argument. This works fine for all alphanumeric keys and Ctl-a ... Ctl-z, Backspace etc. but does nothing for such keys as Insert, Delete, Home, End, and the navigation keys. I would also want to read Ctl and Alt keys combinations etc. I have done these thing before, too many years ago, but forgotten it all. Tried the reference manual, but have not enough years left to succeed that way.
View 1 RepliesI need to implement, Controls Based Security in a Windows Forms Application using VB.NET. I tried google but did not get anything much to work with.
I would like if someone, could suggest some books or tutorials.
I have a Windows Forms app that, unfortunately, must make calls to controls from a second thread. I've been using the thread-safe pattern described on the [URL].. Which has worked great in the past.
The specific problem I am having now: I have a WebBrowser control and I'm attempting to invoke the WebBrowser.Navigate() method using this Thread-Safe pattern and as a result I am getting StackOverflow exceptions. Here is the Thread-Safe Navigate method I've written.
[Code]...
I developed a VB Winforms application in VS2010 Pro on my Win7 x64 desktop computer. I also have VS2010 loaded on my Win7 x64 laptop and when I open the same solution the application's form controls are shifted out of alignment and appear slightly stretched horizontally. The VS IDE settings are identical on both computers. Any idea why the solution looks perfect in the IDE when on my desktop, but when opened in the IDE on my laptop, all the controls shift out of alignment horizontally
View 5 RepliesI have pairs of controls: immagebox + textbox = one pair.I want these to show up in a single column grid/tabular format.Each cell contains one image/text pair.I want this grid to scroll because the number of pairs is dynamic depending on a user selection.I suppose I will be adding these controls in code at runtime when the user makes his/her selection.
View 1 RepliesAre there any good free alternatives to DevExpress data grids (WinForms)?I am looking for WinForms Data Grid and Data Editor Controls.
View 1 Replies