all groups > vb.net > march 2006 > threads for sunday march 19
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Designtime support (Comment) to server control
Posted by wapsiii at 3/19/2006 11:31:47 PM
I'd like to add comment attributes to a custom server control (the
little help text/tooltip that appears for some server controls at the
bottom of the properties pane in vs)
How is this possible?
<HelpText...
Property x() as string
get...
set...
End Property... more >>
Excel Pivot tables in vb.net
Posted by nikila at 3/19/2006 10:37:18 PM
Hi,
I have to create excel pivot tables from vb.net. Already I am creating excel
file using oledb connection. I want to use the same to create the excel
pivot tables. Can anyone please help me on this. It is very urgent. Please
reply immediately
Thanks for the help!!!!
nikila
... more >>
Save image of webbrowser control?
Posted by dgk at 3/19/2006 10:22:37 PM
How can I capture an image of a websession? Something like this where
wb1 is a webbrowser?
Dim g As Graphics = wb1.CreateGraphics()
Dim img As Bitmap = g.CopyFromScreen(New Point(0, 0), New Point(0,
0), )
g.Dispose()
I have no idea what to put in for the next argument in the Co... more >>
programmatically creating a table in dotnet
Posted by Priya at 3/19/2006 10:18:33 PM
Hi,
I need to create a temp table in my asp.net web services program. I
have an xml file of the format
<uom_masters>
<uom_code>varchar</uom_code>
<uom_description>varchar</uom_description>
<uom_tolerance>money</uom_tolerance>
</uom_masters>
I need to read the fields along with the d... more >>
StringConnection
Posted by philip at 3/19/2006 5:32:55 PM
I would programatically choose between two Access Databases. They are both
the same structure. Only data change.
How can I programatically say : "now, I change the database ?"
I saw that the origin of the database is writen in an xsd file. By which
property of which object can I programaticall... more >>
Update/Refresh Problem
Posted by Bernie Hunt at 3/19/2006 4:39:05 PM
I have a simple app that grabs records from a database and steps through
them processing each record. I have three text fields on the form to give
the user feedback on the progress.
With each new record I update the three fields on the form with the
information from the current record. I i... more >>
Simplest way to save a CSV file from the internet to my computer?
Posted by Scott at 3/19/2006 4:19:50 PM
Say there is a file on a website as a CSV. Not protected, just a data dump.
I'd like to collect this data to my computer to be analyzed.
Right now I am using the the MyWebClient feature. Code as follows:
Dim MyWebClient As New System.Net.WebClient
MyWebClient.DownloadFile(StringOfCSVURL... more >>
XML file & objects
Posted by David A. Osborn at 3/19/2006 2:52:09 PM
Is there a way to take an xml file that I have created that lays out the
formating for custom objects with their properties and then pull them into
vb.net to use? For example the xml would look like:
<myobjects>
<object>
<name>object1</name>
<property>color</property>
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Help with Web proxy server needed......
Posted by Jim Hubbard at 3/19/2006 3:06:47 AM
I want to write a custom web proxy server using VB.Net 2.0 to allow the end
user to filter out images or "adult content" or objectionable words and even
ads.
But, I have a couple of questions and would very much appreciate any help
that you might be able to give me concerning them.
1) Is... more >>
Help with Data Tables
Posted by Scott at 3/19/2006 12:05:27 AM
Ok. Brand new at this so please give a little patience and help me on the
baby steps. I'm rewriting something I did initially in PHP / MySql on a
vb.net / mysql platform. Here's what I'm doing:
1) Data is pulled from the internet and stored to a CSV file
2) Data is loaded into the datab... more >>
late binding
Posted by andreas at 3/19/2006 12:00:00 AM
Hi,
I am working with the streams objects (filestream,streamwriter,streamreader)
May I do or is it good programming to make a sub like :
public sub Closestreams(ByRef ob as object)
if not (ob is nothing) then
ob.close
ob = nothing
end if
end sub
thanks for any response
... more >>
How to do the pattern?
Posted by yxq at 3/19/2006 12:00:00 AM
Hello,
I want to get the strings that match c*.txt ( * means asterisk wildcard)
from some strings below:
c1234.txt
1234.txt
a1234.exe
cqwer.txt
casd.txt
I want to use regular or function, do not want to use if....then...
How to do?
Thank you
... more >>
Named Pipes
Posted by Jarrod Morrison at 3/19/2006 12:00:00 AM
Hello all
Ive been trying to get a service app that i run to interact with the logged
on user of the machine and so far havent been very successfull and have read
that maybe named pipes is the way to go. Im hoping someone has some
information and easy to understand examples on named pipes. Bas... more >>
|