Search:

Type: Posts; User: Deepak Sakpal

Page 1 of 13 1 2 3 4

Search: Search took 0.27 seconds.

  1. Diff between Crystal Reports.NET & stand-alone Crystal Reports

    What is the difference between Crystal Reports that comes with Visual Studio.NET and stand-alone Crystal Reports?
  2. Replies
    2
    Views
    6,909

    Re: Rectangular Toolstrip corners

    Yes, Form Load is the appropriate place for that code.
  3. Replies
    2
    Views
    6,909

    Rectangular Toolstrip corners

    ToolStrip control appears in rounded corners/edges by default when the RenderMode is other than "System" and there is no direct property to change these corners to rectangular.

    ToolStrip with...
  4. Replies
    4
    Views
    805

    Re: Treeview with combox control

    I have already seen that, it's a little different thing. May be I can can mold it according to my needs but I am in bit hurry that's why I am looking for some ready made control.

    Thanks for...
  5. Replies
    4
    Views
    805

    Re: Treeview with combox control

    That is the last option if I don't get anything desired.
  6. Replies
    4
    Views
    805

    Treeview with combox control

    Hi,

    Does anyone knows how to achieve UI like the attached image. I need to have a Treeview control which will have nodes & child nodes and each node should have a ComboBox control next to it.
    ...
  7. Replies
    2
    Views
    1,441

    Re: Control resizing problem IDesignerHost

    Hey, thanks for the reply :). After lot of digging I done it this way;

    Dim myProp As System.ComponentModel.PropertyDescriptor
    Dim ctrl As Control
    Dim newSize As Integer = 200

    ctrl =...
  8. Replies
    2
    Views
    1,441

    Control resizing problem IDesignerHost

    I am working on a application which is basically a screen designer. I have implemented the form designing capabilities using IDesignerHost and other interfaces. In my application user can pick a...
  9. Replies
    11
    Views
    40,988

    Re: Proper Case Or Title Case

    Yes you can use StrConv and I already mentioned that in the very first post. It's a vb6 function. And, I don't see any problem with my ToProperCase function if you pass a string containing...
  10. Replies
    23
    Views
    37,054

    Re: Tabless Tab Control

    Press CRTL+SHIFT+B to build the control. Once the control is compiled, it becomes available in Toolbox at the top for use.
  11. VS 2008 Re: TreeView: How to know name of 'active' node?

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    If TreeView1.SelectedNode IsNot Nothing Then
    ...
  12. Thread: Reports

    by Deepak Sakpal
    Replies
    2
    Views
    443

    Re: Reports

    I am not sure if Microsoft reporting technology is available in Express Edition. If it is there then go for it, otherwise the only solution I can think for you is HTML Reports. Create reports in...
  13. Replies
    1
    Views
    454

    Re: DDE or not

    DDE was used in VB6. You need to use Remoting in .NET. Have a little search in google for ".NET Remoting" to get started with it.
  14. Replies
    7
    Views
    1,041

    VS 2005 Re: Display all Databases

    It just skips master, tempdb, model and msdb system databases whose dbid's are 1, 2, 3 and 4 respectively. MS SQL assigns dbid greater than 4 to databases created by users.
  15. Replies
    7
    Views
    1,041

    VS 2005 Re: Display all Databases

    For Each row As DataRow In tblDatabases.Rows
    If CInt(row("dbid")) >= 5 Then
    ListBox1.Items.Add(row("database_name"))
    End If
    Next
  16. Replies
    7
    Views
    1,041

    VS 2005 Re: Display all Databases

    Imports System.Data
    Imports System.Data.SqlClient

    Public Class Form2

    Private Sub Form2_Load( _
    ByVal sender As System.Object, _
    ByVal e As System.EventArgs _
    )...
  17. Replies
    8
    Views
    18,271

    Re: How to convert String to Form name?

    Please post your code.
  18. VS 2008 Re: selecting option value using webbrowser

    Try this:


    WebBrowser1.Document.GetElementById("birthday_mon").value = WebBrowser1.Document.GetElementById("birthday_mon").Children.Item(2).value
  19. Re: Creating an object...HELP ASAP PLEASE

    I am using the Tag property to identify the picture being displayed in the PictureBox so that when you click on the image it will change the image accordingly.

    Tag property returns the value as...
  20. Re: Creating an object...HELP ASAP PLEASE

    Drop a PictureBox on the form and then on click event change it's picture through Image property.

    Public Class Form2

    Private Sub Form2_Load( _
    ByVal sender As System.Object, _
    ...
  21. Replies
    4
    Views
    901

    Re: Code Generated Radio Button Issue

    Use this code:

    Private Sub btnSelect_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelect.Click
    Dim i As Integer
    Dim sRadioButton As RadioButton

    For...
  22. Replies
    9
    Views
    1,182

    VS 2008 Re: Application Wide Event Trap

    If that is the only concern then write a public function in a module that you need to call every time before you make any database request. That function will check the status of the connection. If...
  23. Replies
    9
    Views
    1,097

    VS 2005 Re: User Control Rebuild Take Effect ???

    I have tested it, TextChanged event is getting fired. I don't see any issues with that.
  24. Replies
    9
    Views
    1,097

    VS 2005 Re: User Control Rebuild Take Effect ???

    Ctrl+shift+b
  25. Replies
    7
    Views
    4,517

    Re: Problem with ComboBox in LostFocus

    LostFocus is not the appropriate event for what you are trying to do. Put the code in Validating event.


    Private Sub ComboBox4_Validating( _
    ByVal sender As Object, _
    ByVal e As...
  26. Replies
    3
    Views
    1,963

    VS 2008 Re: Book for learning MS chart control?

    Is MSDN not sufficient? or just google it.
  27. Replies
    11
    Views
    3,227

    VS 2008 Re: FileSystemWatcher Error...

    There is nothing wrong with FileSystemWatcher control. The message is quite self explanatory. You cannot access a UI control from another thread. To access the UI control you need to get back the UI...
  28. Re: Scan computer for certain file extensions.

    Here is the solution for what you said here:
    Public Class Form2

    Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Dim lookupDir...
  29. Replies
    6
    Views
    1,848

    VS 2008 Re: VB2008 User Controls Basics

    VB6 does grouping automatically without creating physical folders but in .NET we have to create physical folders to group classes, user controls together. He might be expecting that .NET will also...
  30. Replies
    3
    Views
    587

    VS 2008 Re: a simple question about class

    To call a class member like a procedure or a function, you need to declare it as shared. Consider the following example:


    Class Greet
    Shared Sub SayHello()
    MessageBox.Show("Hello...
  31. Replies
    3
    Views
    839

    VS 2008 Re: syntex error

    The problem is occurring because of the single quote. The problem will go away if you replace the single quote with double single quote. But the parametrized queries is a better way.
  32. Replies
    3
    Views
    607

    Re: Embedding HTML into form

    A detailed description always helps to understand the problem better. Do you want to display the html content on a form or what?
  33. Replies
    5
    Views
    1,158

    Re: VB 2005 Error Message

    Connection should be opened before executing command. Also, the original posted missed ; and D before "atabase Password" in connection string.
  34. Replies
    5
    Views
    1,158

    Re: VB 2005 Error Message

    The ActiveConnection property is expecting a ADODB.Connection object instead of a Connection String. Open the ADODB Connection before dealing with Command Object and then Set that Connection to the...
  35. Replies
    1
    Views
    552

    VS 2005 Re: Interactive desktop

    http://www.google.co.in/search?q=vb.net+bouncing+ball&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
  36. Replies
    4
    Views
    630

    VS 2005 Re: Embed to html?

    Active-X components are re-usable components. It is written by keeping specific purpose in mind. Active-X controls can be developed using VB6 and not .NET. You can use it to design small interface...
  37. Replies
    4
    Views
    630

    VS 2005 Re: Embed to html?

    Not applications but Active-X controls can be embedded in html documents. You need to create a CAB file for that
  38. Replies
    13
    Views
    3,739

    VS 2008 Re: Property Grid or Alternative

    There are lots of converters available which converts c# code to vb.net.
  39. Re: Code Needed: How To Open Web Browser in a new Window

    You need to start the new process of your custom web browser application and pass the site url as an command line argument. Read that command line argument when the app starts and load it the browser...
  40. Replies
    13
    Views
    3,739

    VS 2008 Re: Property Grid or Alternative

    Have a look at this article at CodeProject. See if that helps you.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width