|
Hi guys,
I am doing Windows applications in VB.NET 2005. I want to use chart in my project. I already asked this question in this site. But viewers said the solution to use "MSChartControl" (but this is for Visual Studio 2008.). Is there any other way...
Started by sivakumar on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Public Class Form1 Protected Overrides Sub OnCreateControl....
That can be done directly in the form's OnPaint override/event or encapsulated in a separate component/control .
You can draw one yourself by using methods of the System.Drawing.Graphics object .
|
|
Hai How to get keyboard presskey values out of the application in vb.net 2005. I try form keydown event that is working in Application Active.
Started by somu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If that's not what you're looking to do, can you be more specific?
I'm hesitant to help someone that is "doing Spysoftware", but it sounds like you're trying to create a low level keyboard... .
But, here's a tutorial from MSDN.
You've not given much to go on.
|
|
Hai how to zip files(Any files or folder ) in vb.net 2005.please give some ideas thank you
by
somu
Started by somu on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use files in VB.NET and other .NET languages....
I hope it will be useful to you.
Have a look at SharpZipLib
I do not know how to program in VB.NET. However, a search revealed an interesting link: Zip Compression VB.NET Examples .
|
Ask your Facebook Friends
|
I want to create a json object in vb.net to send the response back javascript function to do something please tell me if anyone have any idea about it.
Started by Abhisheks.net on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
How to create an JSON object in vb.net. "Dim product As New Product()", error type product not define.
|
|
My SSRS DataSet returns a field with HTML, e.g.
<b>blah blah </b><i> blah </i>.
how do i strip all the HTML tags? has to be done with inline VB.NET
Changing the data in the table is not an option.
thank you
Solution found ... =...
Started by roman m on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's a good example using Regular Expressions: http://www.4guysfromrolla.com/webtech/042501-1.shtml
If you know the HTML is well-formed enough, you could, if you make sure it has a root node, convert the data in that field into a System.Xml.XmlDocument... .
|
|
Hai how to do word wrap in drawstring in vb.net 2005. please tell me
Started by somu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For example:
Dim s As String =....
GDI+ will wrap the text to make it fit in the specified rectangle .
Http://www.informit.com/guides/content.aspx?g=dotnet&seqNum=286
You can draw text in a rectangle by passing a RectangleF object to the DrawString method .
|
|
I am developing a GUI based application in MS Visual Studio 2005, I just want to know if it is possible to use both VB.NET and C# in the same project. Or can I include a module written in C# in my VB.NET project?
I have a class written in C# which I want...
Started by Amit Kumar Jha on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Or can....
Also see How in the same solution.
From "Calling C# class in VB.net" :
I think the C# code that you to your VB.Net project, import the namespace you need, and then you can use the C# code.
And reference the dll in your VB project.
|
|
I was given a half-finished project to finish. It was written in C++ using Visual Studio 2005.
Is it possible to somehow continue the project in VB.Net? If it is, can you guide me?
Thanks
Answer Snippets (Read the full thread at stackoverflow):
If you can make your project work like that, it's the easiest way to integrate it in... .
That means functions only, no classes at all.
Assuming you're talking about VB6, you have to compile your c++ project as a dll file with extern "C" decorated outputs .
|
|
Hi,
I'm preparing a class on Visual Basic 2005 targeting Visual Basic 6 programmers migrating to the .NET platform.
My primary concern is to teach my students the best practices for developing in .NET, and I am wondering about whether to consider the ...
Started by Enrico Campidoglio on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Where I'm at, I have to move back and forth between C# ... .
Horses for courses and all that.
My seat in VB.NET doesn't mean you shouldn't use them (IMHO).
Primarily, but have been working on a VB.NET web application for the last 6-8 weeks.
|
|
Exact duplicate: How to switch a large app from VB6 to VB.Net
Exact duplicate: Best strategy for moving applications from VB6 to VB.Net
Exact duplicate: Conversion tool comparisons for VB6
can any one please tell the tool which converts vb6 to vb.net
...
Started by dagg on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
There is one that comes with vb.net. When you open a .vbp vb6 project,....
I don't know what the VS2008 system is like.
I haven't used it for a while, last time I did a conversion was with Visual Studio 2005 just right.
Component built in.
|