all groups > vb.net > june 2007 > threads for wednesday june 27
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
outlook address book
Posted by hotelinfoline NO[at]SPAM gmail.com at 6/27/2007 11:31:39 PM
I want to get outlook express (not microsoft outlook express) address
book address's in visual basic application. Please tell how I can get.
... more >>
Problems with arrays
Posted by magriii at 6/27/2007 9:48:02 PM
Hello
I run into problems on how to create array instances. I'm playing around for
hours now and can't find a solution for this. How can I assign an instance of
the Mysegment class to the rendition segments property?
Any help is greatly appreciated.
Thanks
magriii
Public Class Form1
... more >>
Updating machine.config. on multiple pcs
Posted by John at 6/27/2007 9:00:08 PM
Hi
We need to update machine.config for .net 2.0 on multiple pcs on a network.
Most machines would potentially have other versions of .net installed too.
Is there an easy/quick way to do this specially one that a non-technical
person can do too such as running a bat file or some such like?
... more >>
PDF File Manipulation
Posted by Garth Wells at 6/27/2007 7:09:40 PM
I have a client that wants to process PDF files that have embedded barcode separator pages. I want
to programmattically open the PDF, search for a separator page, get a value off the page (document
type) and extract the pages between separator pages and write them to a new PDF. Keep in mind I wa... more >>
Format Textbox with Floating Decimal Point
Posted by Randy at 6/27/2007 3:51:31 PM
I'm sure that this has been posted before, but I can't find it.
Please accept my apologies for any redundancy.
I have a textbox that contains numbers pulled from a SQL database
column. These the datatype in the db is set to "decimal(18, 4)", so
the number is stored with 4 decimal places, alth... more >>
Display Images in a Combobox
Posted by Randy at 6/27/2007 3:37:52 PM
Hi,
I have a small table - 2 columns, 5 rows. Col 1 is the key column and
has integer values of 1 through 5. Column 2 is a varbinary(MAX)
column and has jpg images loaded in it. What I want to is to bind a
combobox to this table so that the combobox will display these these
five images in ... more >>
Help with Default Property
Posted by millerchris40 NO[at]SPAM gmail.com at 6/27/2007 2:59:32 PM
I created a UserControl that has a MaskedTextBox in it. It works. I
have a BorderStyle property defined as:
<Browsable(True),
DefaultValue(System.Windows.Forms.BorderStyle.Fixed3D),
Description("Indicates whether the EnhancedTextBox will have a
border.")> _
Public Overloads Propert... more >>
.net library
Posted by Omar Abid at 6/27/2007 2:37:49 PM
Hi,
I want to create my own library any one have an idea how to create an
assembly ?
Omar Abid
Thks
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Capturing Unhandled exceptions
Posted by Kevin S Gallagher at 6/27/2007 12:37:44 PM
Just read a posting on "Unhandled Exceptions in services" and wanted to ask;
If you are logging exceptions of this nature do you log to text, XML or
database?
Also if you don't mind saying why you selected it.
Thanks!!!
... more >>
count occurances of digits in a string
Posted by Smokey Grindle at 6/27/2007 11:17:36 AM
any fast way to do this? I just need to check if if a string which could
have a lot of characters in it if it has numbers and count the number of
numbers in the string. thanks!
... more >>
proper way to describe an enum
Posted by Smokey Grindle at 6/27/2007 10:54:05 AM
What is the proper way in VS2005 to describe / document values of an enum? I
want it so when I have the list of values the person working with it can see
what they are in the IDE like other ones let you... like if you set the
formborderstyle the intellisense that pops up has a description next... more >>
Using vs. Try Catch
Posted by cj at 6/27/2007 8:45:57 AM
my old code
Try
Dim sw As New System.io.StreamWriter(fileName, True)
sw.WriteLine(strToWrite)
sw.Close()
Catch
End Try
my new code
Using sw As New System.IO.StreamWriter(fileName, True)
sw.WriteLine(strToWrite)
End Using
If I have experience an exception in any part of... more >>
determining current version of PowerPoint
Posted by GeorgeAtkins at 6/27/2007 8:26:06 AM
Greetings!
I wrote a small Exe that simply runs Shell to load PowerPoint and launch a
particular file, depending on the day of the week. However, it was set up for
office 2003 (I naively hardcoded the path) and I also used Shell. Does
anybody have a snipped showing a more efficient method for... more >>
vb.net add records to MOSS 2007 List
Posted by Chris at Pierce at 6/27/2007 8:08:41 AM
I have a Windows Forms Vb.net program written in vstudio2005 that I would
like to have access a MOSS (Microsoft Office Sharepoint Server 2007) List,
and have the ability to add records to that list. Additionally it would be
nice to loop through existing MOSS list rows (records).
If anyone ... more >>
Size of controls
Posted by Dennis hoyer at 6/27/2007 7:14:45 AM
Hello Newsgroup,
i have got some problems on chineses PCs. I have create a program on a
german system. The system already runs with now problems in some other
countries. But if i will install this program on some chinese pcs
( not all ) then some buttons or labels are changed in size. They are... more >>
closing down an application
Posted by Peter Newman at 6/27/2007 6:24:02 AM
i have an application that id fired from events for an FTP server. I am
trying to rewrite from old VB6 to vb.net and have come up with a problem
thats stumped me .
old code
WriteToActivityLog("FINISHED STARTDOWN 1")
Unload.me()
WriteToActivityLog("FINISHED STARTDOWN 2 ")
in this c... more >>
Reliable way to change the cursor
Posted by Luke R at 6/27/2007 12:00:00 AM
1) Me.Cursor = Cursors.WaitCursor
This works - except when you hover the mouse over a textbox or datagridview
control, it doesnt show the waitcursor.
2) Me.UseWaitCursor = True
This works if i set it off a button click. It does not work if i set it as
part of a process, which is extremely od... more >>
Threading & raising event question
Posted by Ajak at 6/27/2007 12:00:00 AM
Hi all,
I would like to write a class (Task) with a method to do some lengthy
process based
on several of the class properties. The method is running on different
thread.
During the execution of the method, the class is suppose to fire events such
as
ProgressChanged. And it raises Comple... more >>
|