all groups > vb.net > august 2007 > threads for tuesday august 21
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
suspend BackGroundWorker Control
Posted by nondos at 8/21/2007 5:42:42 PM
Is it possible to suspend BackGroundWorker Control like it's possible in
thread?
Thanks
... more >>
MS Word properties that are read-only in VB.Net but not in VBA
Posted by Benjamino5 at 8/21/2007 3:46:03 PM
Apologies if this is the wrong forum. I normally post in the Word Programming
group, but this seemed like more of a VB.Net question.
I'm moving code from VBA over to Visual Studio Express 2005 (Visual Basic)
while still learning about VB.Net. (Not a good combination, I know.)
One problem I... more >>
Intercepter l'appui de la touche Tabulation
Posted by xlaxague NO[at]SPAM gmail.com at 8/21/2007 2:35:32 PM
Bonjour,
Dans une winform, je cherche =E0 intercepter l'=E9v=E8nement g=E9n=E9r=E9 p=
ar
l'appui de la touche tabulation.
J'ai essay=E9 d'intercepter les =E9v=E8nements KeyPress, KeyDown et KeyUp.
Par exemple :
Private Sub frmProposition_KeyDown(ByVal sender As Object, ByVal e
As Sys... more >>
Update datarow in typed dataset
Posted by C a r l o s A n t o n i o at 8/21/2007 1:56:33 PM
Hello,
How can I update a datarow in a typed dataset? It seems i can't make it to
write the changes into the database. What am i doing wrong? Thanks in
advance.
Here's my code:
Private Sub save_changes(ByVal _infraction_id As System.Guid)
Dim o_adapter As New roswellDataSetTableAd... more >>
How to iterate thru a toolstrip collection
Posted by Dean Slindee at 8/21/2007 12:42:01 PM
I have a toolStripDropDownButton with child toolStripDropDownMenuItems. I
would like to iterate thru the toolStripDropDownMenuItems and look at the
menuitems and discard the separators. Problem is, these objects cannot be
cast to a Control, at least that's the error message displayed.
How... more >>
How to use DataReader with DataGridView in Visual Basic 2005?
Posted by Peter at 8/21/2007 12:20:02 PM
I'm trying to add a datagridview control to a Windows Form to display
read-only information in visual basic 2005. My understanding is that
datareader will be faster for this purpose. I have the following questions:
1. Can DataReader be bound DIRECTLY to DataGridView?
2. If DataReader c... more >>
Can't load assemblies in IDE
Posted by Jack Jackson at 8/21/2007 12:18:16 PM
This is driving me crazy and I am stuck. I'm using VS2005 and VB.
I have four projects, each of which creates a .dll.
Proj1 has no project references.
Proj2 has a project reference to Proj1.
Proj3 has a project reference to Proj2 and Proj1.
Proj4 has a project referecne to Proj3, Proj2 and... more >>
Getting a timer to work
Posted by Hotrod2000 at 8/21/2007 12:15:23 PM
I'm quite new to programming but I'm having problems getting a timer
to work in visual studio.net
I've created a timer on a form, enabled it and then typed the
following code (from the mdsn library as I thought this would be a
good start!!!) but nothing happens :-
Imports System.Timers
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
remove image tags in string
Posted by Smokey Grindel at 8/21/2007 11:37:46 AM
I have a HTML string that I want to remove all the <IMG ....... > tags
from... any regex's out there for this? I basically just want to remove all
the images from the HTML.. thanks!
... more >>
Signing & Click Once
Posted by Al G at 8/21/2007 10:26:02 AM
I have an office application that I would like to publish from a network
location, that gets backed up, and offer updates to users as they become
available. Apparently this is exactly what "click once" does.
Since this is a small office, I have little need for code security, and
would... more >>
Access Controls nested in a FormView
Posted by RGF at 8/21/2007 10:21:51 AM
Hi, I am using server controls (textbox, dropdownlist, calendar)
inside of a form view, it seems that the .Net framework (VB.Net & Net
Frame Work 2.0) makes it difficult to access the control properties
when embedded inside of a FormView control.
What I am trying to do is to enable or disable ... more >>
How to refresh system tray when application closes?
Posted by Engineerik at 8/21/2007 9:24:00 AM
I have an application which uses a notification icon in the system tray.
When the application is closed the notification icon remains in the system
tray until I hover over it with the mouse. How can I refresh the system tray
to remove the notify icon when the app closes?
... more >>
Can add new data to DataGridView but can't save it!
Posted by teddysnips NO[at]SPAM hotmail.com at 8/21/2007 7:32:55 AM
WINDOWS FORM>
We are migrating an app from VS2003 using DataGrid to VS2005 using
DataGridView. Naturally, all our DataGrid helper classes are now
redundant. This is more or less my first exposure to this technology
- I've spent the past five years on ASP.NET
I want to create a very simple b... more >>
Resource String showing Empty. Is the number of Strings in the Resources limited?
Posted by JB at 8/21/2007 4:14:17 AM
Hi All,
I'm using the Application's Resources to store Strings (right click on
the Application, Properties, Resources).
There are quite a lot of Strings in there. Today I've just added
another String the usual way, but when I come to display it (using the
generated property on My.Resources) t... more >>
Convert C# 'ComImport' to VB
Posted by Phil at 8/21/2007 3:22:05 AM
How do I accomplish the equivalent of the IFilter Runtime Callable Wrapper
(RCW) code in VB2005 or 2003, published in
http://microsoft.apress.com/asptodayarchive/74064/content-extraction-with-the-ifilter-interface? I have pasted the code down the bottom.
Basically, my problem is that the ComI... more >>
Size of Byte Array for big files?
Posted by Anil Gupte at 8/21/2007 12:00:00 AM
I am using the following:
Dim fsReadStream As New FileStream(TextBoxVideoFileName.Text, FileMode.Open,
FileAccess.Read)
Dim brReader As New BinaryReader(fsReadStream)
Dim ByteArray() As Byte
ByteArray = brReader.ReadBytes(fsReadStream.Length)
This works fine for smaller files, but crashes... more >>
|