Telerik Forums
UI for WinForms Forum
5 answers
440 views
Hi

I don't understand what datatype this column binds to.

I have a collection of objects with a bitmap property, when binding to the grid, nothing is displayed.

What datatype am I suppose to use? Image, Byte() ? I cant seem to find much documentation on this.

Thanks
Julian Benkov
Telerik team
 answered on 18 Mar 2008
4 answers
190 views
Hello,

i have a very weird issue. Everytime when i select an item from the Combobox the SelectedText value only changes at the second time when the SelectedIndexChanged event is fired. So i have to select the itme twice until i get the Value i want to have. Urgent Problem!!
Georgi
Telerik team
 answered on 18 Mar 2008
4 answers
111 views
OK so I am new to both .NET 3.5 and Winforms.  I have experience connecting to a db in the web.config file, but when it comes to the app.config, I am having difficulty.

I am trying to populate the ComboBox with data from a Stored Procedure.

Can anyone point me in the right direction, I think I must be close.

Imports System  
Imports System.Data  
Imports System.Configuration  
Imports System.Data.SqlClient  
Imports System.Data.CommandType  
 
Public Class Form_Donations  
 
    Private Sub Form_Donations_Load(ByVal sender As ObjectByVal e As System.EventArgs) Handles Me.Load  
        Dim Conn As SqlConnection = New SqlConnection(ConnStr)  
        Dim sqlcmd As SqlCommand = New SqlCommand("npoGetHousehold_NameID", Conn)  
        sqlcmd.CommandType = StoredProcedure  
 
        Conn.Open()  
        Dim rs As SqlClient.SqlDataReader  
        rs = sqlcmd.ExecuteReader()  
 
        If rs.HasRows Then 
            Try 
                RadComboBox2.DataSource = rs  
                RadComboBox2.DisplayMember = "Name" 
                RadComboBox2.ValueMember = "ID" 
            Catch ex As Exception  
 
            End Try 
            Conn.Close()  
            Conn.Dispose()  
        End If 
 
    End Sub 
Vassil Petev
Telerik team
 answered on 18 Mar 2008
7 answers
469 views
In rad grid for ASP.NET we can easily export the grid to Excel. Can we do it in winform applications ?

Dimitar Kapitanov
Telerik team
 answered on 18 Mar 2008
1 answer
94 views
Does Telerik have a date for the release of the final build of the Windows Forms Q1 2008 controls?
Kiril
Telerik team
 answered on 17 Mar 2008
3 answers
64 views
Hi. I'm trying to use the Business Cards gallery example but the autoscroll propertie doesn't work. Can you help me?

Thanks
Nikolay
Telerik team
 answered on 17 Mar 2008
1 answer
64 views
radGrid1.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGrid1_CellDoubleClick);


this event doesn't works in new beta :(
Jack
Telerik team
 answered on 17 Mar 2008
2 answers
85 views

Support:
I was using trial version of Rad control and created few test screens and everything went on well except the popup.

I recently bought RadControlsWinforms_Q3_2007_SP1_dev_setup.exe .
When I installed the version I get the following error on the screen using panel.

Telerik.WinControls.Design.RadObjectCustomPropertyDescriptor.SetValue(Object component, Object value)

When I checked your VB.NET sample ,panelbar-First Look>Form1.vb throws the same exception.The trial version I tried before the purchase is
RadControlsWinforms_Q3_2007_trial_setup.exe

I'm really struck now,the main page of my application is using the Panel and I can  rul the apps ;-).

Not sure whether the trial version got messed up with the actual?

Appreciate if you can help me to save me from redevloping the screen due to some control problem.

Regards,
Ganeshram.M

Boyko Markov
Telerik team
 answered on 17 Mar 2008
3 answers
149 views

Hello,

The DockingSmartPartInfo is somehow being applyed too late (after the view is visible), making the view being shown on a small size and after loading it's shown with the Fill option as i ddi Dockposition.Fill.

It would had been nice to be able to use an interface like IDockingSmartPartInfo on the View itself.

DockingSmartPartInfo ovzRelatieInfo = new DockingSmartPartInfo();
ovzRelatieInfo.Title =
"Overzicht relaties";
ovzRelatieInfo.TabStripVisible =
false;
ovzRelatieInfo.Width = 700;
ovzRelatieInfo.Height = 500;
ovzRelatieInfo.DockPosition = Telerik.WinControls.Docking.
DockPosition.Fill;
this.ShowViewInWorkspace<OvzRelatieView>("OvzRelatie", WorkspaceNames.DockableWorkspace, ovzRelatieInfo);

Jordan
Telerik team
 answered on 17 Mar 2008
1 answer
212 views

hi Telerik
 
   this is very first simple problem with Radgridview control.
 
   i am using winform Q3 2007.
   
   i want to add row to GridView programattically.
 
   in your sample code you using DB(which i dont wanna to use)
   and in your Help, you suggest to use

     radGridView.Rows.Add(new string() {"asdas","asdas","asdasdaasd"}); like statement.
   but this statement throws error
 
       ")" expected "; expected"  like error.

  
    
   //////////////
   my sample code is
      radGridView1.MasterGridViewTemplate.Columns.Add(new GridViewTextBoxColumn("Image                 "));
      radGridView1.MasterGridViewTemplate.Columns.Add(new GridViewTextBoxColumn("Name                    "));
      radGridView1.MasterGridViewTemplate.Columns.Add(new GridViewTextBoxColumn("Role                     "));
      radGridView1.MasterGridViewTemplate.Columns.Add(new GridViewTextBoxColumn("Permission               "));
      radGridView1.MasterGridViewTemplate.Columns.Add(new GridViewTextBoxColumn("Operation        "));           

      //image
       GridViewImageColumn imgCol = new GridViewImageColumn("D:\\kumar\\security-lab\\RandD - code\\Sample-RadControl\\add_reviewer.gif");
            imgCol.UniqueName = "Img";
            imgCol.HeaderText = "img";
            radGridView1.MasterGridViewTemplate.Columns.Add(imgCol);

 
       //data
      radGridView1.Rows.Add(new String() {"c:\\image\\myimage.jpg","sdfS","ABC","Admin","read","delete"});
      /////////////////

   and i need to add first coloumn as a image column.
 
  i didnt find this simple adding example in your forum, tutorials, so requestiing for the same
  
  Please help me.
 
thanks,
 Santosh kumar

Kiril
Telerik team
 answered on 17 Mar 2008
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?