Search:

Type: Posts; User: Sanket07

Search: Search took 0.01 seconds.

  1. Re: Is there any way to call windows application in VB?

    if you want to put it in the right click menu that is reasonably easy by adding registry keys, this does not need to be in your progam, but in the installation, though you can do it in your program...
  2. Re: What are those controls that do not have events?

    Timer control. :)
  3. Re: How can I call a Command button without clicking it?

    First of all define the command buitton as public
    and then call it form2.command1_click

    Suppose the command1_click is a private subroutine i don't think calling it as form2.Command1_click would...
  4. How to convert an RGB value to a long or a long to RGB?

    Hi,

    How to convert an RGB value to a long or a long to RGB?
  5. To delete selected row from datagridview control.

    HI,
    I want a code that will enable me to delete a selected row from my DataGridView control in my vb.net application.

    Any help!
  6. Re: Calling a function with arguments or parameter in Powershell?

    Well I don't think there is much difference between the two methods of calling a function! But its your personal liking about your style!

    You can call function both ways!

    Hope this helps!
  7. Replies
    5
    Views
    1,201

    Re: Why people think VB is not good & hate it?

    I think an important question is whether you are addressing VB.NET or VB 6.0. They are very different languages. VB 6.0 got a bad rap for being a language you would "write a proof of concept in, then...
  8. Adding Image in SQL database through vb.net application?

    Hi,
    I want to know How can I add image to the SQL database through the form in my Vb.Net project.

    Can you guys please help me with the same?

    Regards,
  9. Replies
    3
    Views
    24,489

    Re: Code to detect USB drive in VB.NET?

    you are going to have to use P/Invoke and RegisterDeviceNotification.
    Here's a link to some code by Wei Mao at MS.

    http://www.dotnet247.com/247reference/msgs/32/164968.aspx
  10. Replies
    4
    Views
    11,717

    Powerpoint slides on form in VB.NET

    Hi,

    I am developing an application in Vb.Net.
    I want to display the powerpoint slides on form is this possible?

    Regards,
  11. Replies
    4
    Views
    3,412

    Re: DataType Decimal or double for Currency?

    In general discussion about decimal & double.

    If it is "scientific" measurement (I mean weight, length, area etc) use double.

    If it is financial, or has anything to do with law (e.g. the area...
  12. Replies
    1
    Views
    693

    Something for folder like FileOpenDialog

    Hi,
    I want a FileOpenDialog kind of control but only for Folder not files.
    IS there any such kind of control available? for folder?

    Please help me.
    Regards,
  13. Replies
    6
    Views
    1,842

    To access a text field from another form

    Hello,
    I am working with Visual Studio, dot net forms.
    I have 2 forms Form X & Form Y.
    I am opening Form Y on Form X using ShowDialog(). Now what I am looking for is a way to access a text field...
  14. Re: How Do U Make A List Box Scroll Down Automatically

    You could just scroll to the bottom as items are added.


    List1.Additem "foo"
    List1.Listindex = List1.NewIndex

    Thanks a lot. This works!
  15. How Do U Make A List Box Scroll Down Automatically

    Hello,
    I am looking for this all over the internet.
    How Do U Make A List Box Scroll Down Automatically?
  16. Replies
    4
    Views
    769

    Re: Problem with server.transfer?

    Hey can you please elaborate your problem please?
    I think code will make the picture more clear.
  17. Replies
    2
    Views
    3,503

    Exporting datatable to excel with ADO.net

    Hi,

    Well I am trying to use a blank or new excel application & fill data to it but the problem is its working very slow & I need to export this datatable to excel faster.

    Thanks,
  18. Re: Need to convert string to ascii values with C#

    Can you please try this?

    Try this
    string s = "Welcome";
    foreach( char c in s)
    {
    Console.WriteLine(System.Convert.ToInt32(c));
    }
    Console.ReadLine();
  19. Embed all files from folder when application compiles

    Hi,
    I want the VB.net to embed the files from a folder when it compiles.
    Now the thing is the files in the folder can be changed whenever i wish.
    I want a command that embed each & every file...
Results 1 to 19 of 19
Page generated in 1,714,003,937.26821 seconds with 13 queries