Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
B

bhargava2409

@bhargava2409
About
Posts
16
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • 3D Image
    B bhargava2409

    hi all,I am trying to include a 3D image which have an extension of .k3d,.an8 like that to my vb.net project.Is there any chance to include them? or i need to include any thing to my project to do so. my main intension is to draw a 3d solid image and show that image in the vb.net is there any chance to do that?If it is posiblle please suggest me that software.Is there any remedy to do so in vb.net it self for 3d image drawing.

    Visual Basic csharp graphics architecture question

  • tree view node click event
    B bhargava2409

    Thanks Jon_Boy Your code is working for me. :)

    Visual Basic data-structures question

  • soliworks image
    B bhargava2409

    how can I include solid works 3D images in my vb.net project which have extensions of sldprt,Is there any chance to do so through vb.net only or some think components to included in to that?:confused: :-\

    Visual Basic question csharp architecture

  • tree view node click event
    B bhargava2409

    I tried the aabove code by making a button visable false and on selcting a perticular treenode it will appear but the same code is not working for the group box that consits of some group of buttons. I want make that group box visable when i click on a perticular treeview node.One more thing i have i have 8 child nodes for my tree so thre is no problem of zero index base.

    Visual Basic data-structures question

  • tree view node click event
    B bhargava2409

    I tried the aabove code by making a button visable false and on selcting a perticular treenode it will appear but the same code is not working for the group box that consits of some group of buttons. I want make that group box visable when i click on a perticular treeview node.

    Visual Basic data-structures question

  • tree view node click event
    B bhargava2409

    thanks for u r replay my problem is in the tree node selction program Private Sub TreeView1_AfterSelect(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles TreeView1.AfterSelect Dim childnum, index As Int32 childnum = TreeView1.SelectedNode.GetNodeCount(False) index = TreeView1.SelectedNode.Index 'index = index + 1 If index = 0 Then Button2.Show() GroupBox1.Show() End If End Sub The Above function is not working for me to select tree node and fire,is there any thing wrong in tn my prg.

    Visual Basic data-structures question

  • property grid
    B bhargava2409

    thanks every one for u r replays.I got solution for that. ;)

    Visual Basic help csharp css design

  • tree view node click event
    B bhargava2409

    how can i fire a form through tree view node click event.

    Visual Basic data-structures question

  • property grid
    B bhargava2409

    Yesturday you asked me to post the whole detailes of the question with program in detailed then i posted this one to u.

    Visual Basic help csharp css design

  • property grid
    B bhargava2409

    hi,i am trying to design a property grid that consisits of multiple drop downs of user defined and move those values selected to a variable in back end vb.net code and perform some matha matical calculations. But i am not able to create multiple dropdowns in single group can any one help? My main problem is i am creating multiple drop downs using class for each dropdown.i created one drop down but i can not able to create multiple. Getting error called base class have multiple definetions. code i am trying for drope down is: Imports System.ComponentModel Public Class MotoList1 : Inherits System.ComponentModel.StringConverter ''' ''' Private _Title As String Private _Show As Boolean Private _Number As Short ''' <CategoryAttribute("Other Inputs"), _ Browsable(True), _ [ReadOnly](False), _ BindableAttribute(False), _ DefaultValueAttribute(""), _ DesignOnly(False), _ DescriptionAttribute("Enter Title for the application")> _ Public Property Title() As String Get Return _Title End Get Set(ByVal Value As String) _Title = Value End Set End Property ''' <CategoryAttribute("Other Inputs"), _ Browsable(True), _ [ReadOnly](False), _ BindableAttribute(False), _ DefaultValueAttribute("True"), _ DesignOnly(False), _ DescriptionAttribute("Show option")> _ Public Property Show() As Boolean Get Return _Show End Get Set(ByVal Value As Boolean) _Show = Value End Set End Property ''' <CategoryAttribute("Other Inputs"), _ Browsable(True), _ [ReadOnly](False), _ BindableAttribute(False), _ DefaultValueAttribute("0"), _ DesignOnly(False), _ DescriptionAttribute("Enter a number")> _ Public Property Number() As Short Get Return _Number End Get Set(ByVal Value As Short) _Number = Value End Set End Property Dim _Motor1in As String() = New String() {"400", "500"} Public Overloads Overrides Function GetStandardValues(ByVal context As System.ComponentModel.ITypeDescriptorContext) As System.ComponentModel.TypeConverter.StandardValuesCollection Return New StandardValuesCollection(_Motor1in) End Function ''' Public Overloads Overrides Function GetStandardValuesSupported(ByVal context As System.ComponentModel.ITypeDescriptorContext) As Boolean Return True End Function ''' Public Overloads Overrides Function GetStandardValuesExclusive(ByVal context As System.ComponentModel.ITypeDescriptorContext) As Boolean Return True End Function ''' End Class here while am trying to create another drop down --GetStandardValues-- i got error as function can not be o

    Visual Basic help csharp css design

  • Property grid [modified]
    B bhargava2409

    above i modified my question in proper way. My main problem is i am creating multiple drop downs using class for each dropdown.i created one drop down but i can not able to create multiple. Getting error called base class have multiple definetions. code i am trying for drope down is: Imports System.ComponentModel Public Class MotoList1 : Inherits System.ComponentModel.StringConverter ''' ''' Private _Title As String Private _Show As Boolean Private _Number As Short ''' <CategoryAttribute("Other Inputs"), _ Browsable(True), _ [ReadOnly](False), _ BindableAttribute(False), _ DefaultValueAttribute(""), _ DesignOnly(False), _ DescriptionAttribute("Enter Title for the application")> _ Public Property Title() As String Get Return _Title End Get Set(ByVal Value As String) _Title = Value End Set End Property ''' <CategoryAttribute("Other Inputs"), _ Browsable(True), _ [ReadOnly](False), _ BindableAttribute(False), _ DefaultValueAttribute("True"), _ DesignOnly(False), _ DescriptionAttribute("Show option")> _ Public Property Show() As Boolean Get Return _Show End Get Set(ByVal Value As Boolean) _Show = Value End Set End Property ''' <CategoryAttribute("Other Inputs"), _ Browsable(True), _ [ReadOnly](False), _ BindableAttribute(False), _ DefaultValueAttribute("0"), _ DesignOnly(False), _ DescriptionAttribute("Enter a number")> _ Public Property Number() As Short Get Return _Number End Get Set(ByVal Value As Short) _Number = Value End Set End Property Dim _Motor1in As String() = New String() {"400", "500"} Public Overloads Overrides Function GetStandardValues(ByVal context As System.ComponentModel.ITypeDescriptorContext) As System.ComponentModel.TypeConverter.StandardValuesCollection Return New StandardValuesCollection(_Motor1in) End Function ''' Public Overloads Overrides Function GetStandardValuesSupported(ByVal context As System.ComponentModel.ITypeDescriptorContext) As Boolean Return True End Function ''' Public Overloads Overrides Function GetStandardValuesExclusive(ByVal context As System.ComponentModel.ITypeDescriptorCont

    Visual Basic csharp css design help

  • Property grid [modified]
    B bhargava2409

    hi,i am trying to design a property grid that consisits of multiple drop downs of user defined and move those values selected to a variable in back end vb.net code and perform some matha matical calculations. But i am not able to create multiple dropdowns in single group can any one help?

    modified on Tuesday, June 23, 2009 7:34 AM

    Visual Basic csharp css design help

  • Solid Works Image To My C# Project
    B bhargava2409

    yes,I am tying to view an solid works image which have extensions like SLDPRT,SLDSM in my .net project I think what You have sujjested doesn't work for my requirement.

    C# csharp architecture

  • [Message Deleted]
    B bhargava2409

    [Message Deleted]

    C#

  • [Message Deleted]
    B bhargava2409

    [Message Deleted]

    C#

  • Solid Works Image To My C# Project
    B bhargava2409

    hi, I am trying to include a Solid works image to my c# Project.Is there any chance to include that or is there any way to show solid works image in the .net projects.

    C# csharp architecture
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups