|
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 .
|
|
Dear Friends,
I have text file which contain the 15 Rows with the Comma delimiters..i want to import that file to SQL Table Through VB.net(2005) With 1000 Rows per seconds Is that Possible through VB.net
Please help me... Thanx in Advance
Answer Snippets (Read the full thread at stackoverflow):
If you must use Vb.Net code, the functionality is exposed.
In SQL Server you use BULK INSERT.
Is that.
|
|
How can I read Emails in vb.net 2005 (without Using Third Party Control). Please Any idea and source code Give to me.(Any Method)
Started by somu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Mailbox and download emails, I'm afraid it's not all that straightforward to do in VB.NET..
|
Ask your Facebook Friends
|
Hi,
How to get the handle of a ListBox control in VB.NET 2005?
I am using
Dim i_Handle As ListBox i_Handle = ListBox1.Handle
But this is not working
Started by JPro on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Dim listBoxHandle As IntPtr listBoxHandle = ListBox....
You're creating a new ListBox and setting it to be the value of ListBox1.Handle - but ListBox1.Handle returns an IntPrt type - an integer .
Hi,
Handle is an IntPrt (A handle is just a 32-bit integer) .
|
|
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 .
|
|
Hi,
I want to display an artwork in a picturebox which is associated with an mp3 file when I open the file in my audio player in vb.net 2005. An example would be appreciated.
I've heard you can do it with ultraid3tags, but its in c# and I don't understand...
Started by sam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Your other post with responses
ok sorry, i'm a newbie here. .
Please don't double post.
This is a dupe of your other question.
|
|
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... .
|
|
I was using the following code in order to send e-mails to my company's intranet accounts from a VB.NET 2003 aplication. However this code was marked as no longer valid when I migrated the application after installing Visual Studio 2005. Could you help...
Started by Frabala on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
.net 2.0 has System.net.mail.smtpcleint....
Which means System.Web.Mail.MailMessage was marked as obsolete.
Using System.Net.Mail;
If I remember right, the jump from vs2003 to vs2005 also jumped from .net1.1 to .net2 .
The namespace you should be using is ..
|