Search Results

Showing results 1 to 40 of 535
Search took 0.04 seconds.
Search: Posts Made By: adatapost ; Forum: VB.NET and child forums
Forum: VB.NET 5 Days Ago
Replies: 2
Views: 161
Posted By adatapost
For bug listing, please refere - http://www.menendezpoo.com/a.php?h=a4905e870cd806 or http://www.codeplex.com/Ribbon
Forum: VB.NET 6 Days Ago
Replies: 2
Views: 172
Posted By adatapost
Clear() method clears entire area of drawing surface and fill it specified background color.


GraphicsDisplay = pboGraphics.CreateGraphics
GraphicsDisplay.Clear(pboGraphics.BackColor)
Forum: VB.NET 6 Days Ago
Replies: 1
Views: 185
Posted By adatapost
Take a look at this article - http://www.codeproject.com/KB/IP/httpwebrequest_response.aspx
Forum: VB.NET 6 Days Ago
Replies: 2
Views: 189
Posted By adatapost
Here is a link (http://www.codeproject.com/KB/miscctrl/csEXWB.aspx). I hope you will get useful information.
Forum: VB.NET 6 Days Ago
Replies: 1
Views: 157
Posted By adatapost
Use PrintForm (http://msdn.microsoft.com/en-us/library/bb690938.aspx) component,


..
Dim pf As New PrintForm
pf.Form = Me
pf.PrintAction = PrintToPrinter
pf.Print()
..
Forum: VB.NET 7 Days Ago
Replies: 1
Views: 182
Posted By adatapost
Have a look at sample,

Dim dt as New DataTable
Dim adp as New SqlDataAdapter("select images from table where id=1","Your_connection_string")
adp.Fill(dt)
...
Forum: VB.NET 7 Days Ago
Replies: 2
Views: 254
Posted By adatapost
Welcome,

Use ADO.NET providers API (Use OleDB for MS-ACCESS, SqlClient for MS-SQL server) for database actions (saving/retrieving) and choose Microsoft report or crystal report for...
Forum: VB.NET 7 Days Ago
Replies: 2
Views: 166
Posted By adatapost
Use TOP caluse - T-SQL (http://www.daniweb.com/forums/thread38204.html).


SELECT TOP N .....
Forum: VB.NET 7 Days Ago
Replies: 4
Views: 490
Posted By adatapost
Take a look at this link - COM Port in VB.NET (http://www.microsoft.com/downloads/details.aspx?FamilyID=075318ca-e4f1-4846-912c-b4ed37a1578b&DisplayLang=en).
Forum: VB.NET 8 Days Ago
Replies: 1
Views: 181
Posted By adatapost
The MM7 interface is used to send MMS from 3rd party providers (http://www.activexperts.com/xmstoolkit/objects/mm7/). It is based on SOAP with attachments, using HTTP-POST as the transport protocol.
Forum: VB.NET 8 Days Ago
Replies: 1
Views: 224
Posted By adatapost
Please read this article - http://blogs.msdn.com/oldnewthing/archive/2008/10/20/9006720.aspx
Forum: VB.NET 8 Days Ago
Replies: 1
Views: 225
Posted By adatapost
I hope this article might help you. http://www.codeproject.com/KB/audio-video/SpeechReg.aspx
Forum: VB.NET 8 Days Ago
Replies: 1
Views: 293
Posted By adatapost
Take a look at code snippet,

Dim dt As New Data.DataTable
dt.Columns.Add("Name")
dt.Columns.Add("Status")
dt.Rows.Add("A", "Paid")
dt.Rows.Add("B",...
Forum: VB.NET 8 Days Ago
Replies: 4
Views: 268
Posted By adatapost
Think about DataGridView (http://social.msdn.microsoft.com/Forums/en/winformsdatacontrols/thread/dc9d3acf-ccf8-457f-ba31-ef09fb357aee) to print data in tabular form.
Forum: VB.NET 8 Days Ago
Replies: 1
Views: 151
Posted By adatapost
Use Controls collection,

TabControl1.TabPages("key or Index").Controls("key or index").Controls("key or index")
Forum: VB.NET 8 Days Ago
Replies: 1
Views: 163
Posted By adatapost
Hi,
What do you say about Project Management Tool or something like that. (http://en.wikipedia.org/wiki/Project_management)?
Forum: VB.NET 8 Days Ago
Replies: 1
Views: 158
Posted By adatapost
Take a look at this blog - http://blogs.msdn.com/brad_mccabe/archive/2005/04/07/406227.aspx
Forum: VB.NET 11 Days Ago
Replies: 8
Views: 264
Posted By adatapost
Try it,

Label1.SetBounds((Me.ClientSize.Width - Label1.Width) / 2, (Me.ClientSize.Height - Label1.Height) / 2, 0, 0, BoundsSpecified.Location)
Forum: VB.NET 11 Days Ago
Replies: 5
Views: 263
Posted By adatapost
Two ways to go:

1. Form a query,

myCommand = new SqlCommand("INSERT INTO tblClasses (ClassId,ClassName,Department) VALUES "('" & nudClassId.Value & "','" & txtClassName.Text & "','" &...
Forum: VB.NET 13 Days Ago
Replies: 1
Views: 230
Posted By adatapost
Add the reference of MsFlexGrid DLL to your project and also read this FAQ - http://social.msdn.microsoft.com/Forums/en-US/vbinterop/thread/46e102fc-e3de-423e-abab-819be1255384
Forum: VB.NET 13 Days Ago
Replies: 5
Views: 301
Posted By adatapost
Have to try to update value of selection column?

For i = 0 To ds.Rows.Count - 1
ds.Rows(i)("Selection")=true
..
Next
Forum: VB.NET 13 Days Ago
Replies: 1
Views: 218
Posted By adatapost
I suggest you to use Microsoft SQL Server 2005 Integration Services (SSIS) (http://msdn.microsoft.com/en-us/sqlserver/bb671393.aspx). - It is a platform for building high performance data integration...
Forum: VB.NET 14 Days Ago
Replies: 2
Views: 373
Posted By adatapost
Maybe you will get some useful information regarding to your problem from this FAQ - http://social.msdn.microsoft.com/Forums/en-US/vside2008/thread/9f84bdf7-aace-4a57-a3e4-3863a0efb647.
Forum: VB.NET 14 Days Ago
Replies: 2
Views: 344
Posted By adatapost
Use OwnerDraw property and DrawItem event. Take at look at this article - http://www.code-magazine.com/article.aspx?quickid=0303032&page=3
Forum: VB.NET 14 Days Ago
Replies: 1
Views: 268
Posted By adatapost
Argument type mismatch Now.Add(age). Take a look at following code snippet.

Dim age As DateTime = #12/5/2008#

Dim ageTime As TimeSpan
ageTime = Now - age

Dim...
Forum: VB.NET 14 Days Ago
Replies: 1
Views: 217
Posted By adatapost
Take a look at MSDN article - PrintForm Component (http://msdn.microsoft.com/en-us/library/bb690938.aspx).
Forum: VB.NET 14 Days Ago
Replies: 1
Views: 314
Posted By adatapost
Try this code,


....
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.RemoveAt(ListBox1.SelectedIndex)
System.IO.File.WriteAllLines("file.txt",...
Forum: VB.NET 14 Days Ago
Replies: 4
Views: 338
Posted By adatapost
Use TimeSpan structure.


Dim d1 As Date = #12/5/2008#
Dim d2 As Date = Now
Dim ts As TimeSpan = d2 - d1
Dim dt As Date = Date.MinValue + ts
...
Forum: VB.NET 14 Days Ago
Replies: 1
Views: 145
Posted By adatapost
Take a look at this article - http://www.codeproject.com/KB/vb/NetRemoteTOD.aspx.
Forum: VB.NET 15 Days Ago
Replies: 6
Views: 280
Posted By adatapost
Use following code for comma seperated emails,

...
s = "aa@aa.com,bb@bb.com,cc@cc.com"
Dim addr As String() = s.Split(New String() {","}, System.StringSplitOptions.RemoveEmptyEntries)
...
Forum: VB.NET 16 Days Ago
Replies: 6
Views: 280
Posted By adatapost
Property Bcc is collection of MailAddress objects.

....
mailMessage.Bcc.Add(new MailAddress("aa@aa.com"))
mailMessage.Bcc.Add(new MailAddress("bb@aa.com"))
mailClient.Send(mailMessage)
....
Forum: VB.NET 16 Days Ago
Replies: 6
Views: 280
Posted By adatapost
Use MailMessage.Bcc collection - It is used to add a BCC recipient to an e-mail message, create a MailAddress for the recipient's address, and then add that object to the collection returned by the...
Forum: VB.NET 16 Days Ago
Replies: 1
Views: 240
Posted By adatapost
Take a look at Crystal Report tutorial (http://vb.net-informations.com/crystal-report/vb.net_crystal_report_from_multiple_tables.htm) - from multiple tables.
Forum: VB.NET 16 Days Ago
Replies: 1
Views: 220
Posted By adatapost
Take a look at a thread - http://social.msdn.microsoft.com/Forums/en-US/netfxnetcom/thread/5d2b67e8-d9cb-4025-be1b-aa4379e8fa5a. I suggest you to use http://www.codeplex.com/ftpclient
Forum: VB.NET 16 Days Ago
Replies: 1
Views: 218
Posted By adatapost
Could you please be more specific on webbrowser (http://www.codeproject.com/KB/recipes/IE7_Clone_VS2005_Browser.aspx) control.
Forum: VB.NET 17 Days Ago
Replies: 1
Views: 229
Posted By adatapost
Welcome,

You can do this by using google translation api (http://code.google.com/apis/ajaxlanguage/documentation/reference.html). Take a look at this article & example -...
Forum: VB.NET 17 Days Ago
Replies: 4
Views: 436
Posted By adatapost
I think you should have to look at these samples - http://msdn.microsoft.com/en-us/library/dd250890.aspx
Forum: VB.NET 19 Days Ago
Replies: 4
Views: 436
Posted By adatapost
Try it,

request.Query="dani site:daniweb.com"
request.Image.Filters = new string(){"Size:Width:200","Size:Height:200"}
Forum: VB.NET 19 Days Ago
Replies: 2
Views: 270
Posted By adatapost
Take a look at a thread - possible-burn-data-cd-programmatically-via-vb-net-203062.

SUMMARY: The NeroCOM object (type library) which comes as part of the API is indeed compatible with .NET. There...
Forum: VB.NET 19 Days Ago
Replies: 1
Views: 255
Posted By adatapost
Hi, Take a look at this MSDN article - Technology Summary for Reading and Managing Event Logs (http://msdn.microsoft.com/en-us/library/bb671205.aspx)
Showing results 1 to 40 of 535

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC