Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
all groups > vb.net > june 2004 > threads for sunday 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

Getting value from one form to another in Windows Forms
Posted by PradeepKel at 6/27/2004 11:12:01 PM
Hi, I have 3 forms in my application. Form1 which is a MDI form calling Form2 & Form3. Form2 has a textbox "TextBox1" and Form3 has a CommandButton "Button1". I will show both Form1 & Form2 as MDI Child from Form1. Now when i click on the Button1 in Form3, I want to access the TextBox1 value o...more >>


MDI w/ child forms using activated event
Posted by slaprade at 6/27/2004 11:07:01 PM
I have a MDI form with the following Public fm2 As New Form2() Public fm3 As New Form3() and Private Sub MenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem2.Click fm2.MdiParent = Me fm2.Show() End Sub Private Su...more >>

PAGING
Posted by blackdevil1979 NO[at]SPAM yahoo-dot-com.no-spam.invalid at 6/27/2004 11:02:08 PM
Just wondering, Can VB.Net Window Application use Datagrid Paging? If it is possible.. how to do it? Posted Via Usenet.com Premium Usenet Newsgroup Services ---------------------------------------------------------- ** SPEED ** RETENTION ** COMPLETION ** ANONYMITY ** -------------...more >>

Set Active Directory 'company' value to NULL??
Posted by Phil Kelly at 6/27/2004 10:02:57 PM
Hi! Is it possible to set the value of an Active Directory attribute to be empty? I've tried to set the 'company' attribute as follows: myRepEntry.Properties(strAttrName)(0) = Nothing but I get an error stating that the value cannot be NULL. Anyone got any ideas? Thanks for your hel...more >>

Label control border color
Posted by jcrouse at 6/27/2004 8:21:22 PM
Is there a quick and easy way to change the color of a label controls border from the default black to white? Thank you, John ...more >>

Deplovment question about bannertext
Posted by jcrouse at 6/27/2004 8:12:19 PM
I have created a bannerbitmap, 500 x 70, for use at the top of my installation dialog boxes. The problem that I am having is that therre is text there that displays on top of my bitmap. My checkboxes dialog box has a banneretext property that I can clear and that dialog box is ok. However, the o...more >>

Palm Pilot with dot Net
Posted by lumpierbritches NO[at]SPAM aol.com at 6/27/2004 7:21:11 PM
Can coded programs be written for Palm Pilots in VB.Net? If so, can they also include an Access backend? Michael...more >>

i wonder why..
Posted by Imran Koradia at 6/27/2004 7:18:55 PM
why would one want to use a MemoryStream? it basically creates a stream in memory to read/write data from/to memory - which we can accomplish with our regular objects as well. We could read strings/bytes etc from files using the FileStream (or from network using NetworkStream) into the relevant ...more >>



how call subA in classA
Posted by Frank at 6/27/2004 4:57:16 PM
Hello, how do I do this: classA sub A dim frmA as new frmA frmA.showdialog end sub A sub B some stuff end sub B end classA ========== frmA call sub B in classA end frmA Forget the syntax, I want to call sub B in classA where frmA was created. How do I do that? Thanx for your he...more >>

Can someone explain this difference...
Posted by Richard L Rosenheim at 6/27/2004 4:54:45 PM
Using Visual Studio 2003 running under Windows XP Pro w/SP 1, when I create a new form, the form's title bar has the Windows 2000 look. Yet, in the various Microsoft demos, the form's title bar have the XP look. For example, I'm looking at examples from the DevDays 2004 CD. And this is even w...more >>

thread completion notification
Posted by Bernie Yaeger at 6/27/2004 4:15:48 PM
How can I know, inside an mdi app, that a particular thread is finished processing? I can't, of course, check it with every form that may open (there are more than 100) and the form that opened it did so in its closing event, so it is no longer open. Thanks for any help. Bernie Yaeger ...more >>

Question about back end database
Posted by Big D at 6/27/2004 3:54:18 PM
Hi, I'm writing a program which utilises a database, now i've always used Access for this but as the product will be commercially available can I use Access? Hope i'm in the right place! Dave ...more >>

Using The SyncLock Statement
Posted by Ram at 6/27/2004 3:17:14 PM
Hey, I have about 5 Shared variables, that I want to be locked for access when they are written to. I'v read in the MSDN about the SyncLock statement, and I'm prety sure that's what I'm looking for, But the SycLock statement requires a statement in it's decleration: SyncLock <Statement> M...more >>

vb.net apps via the web
Posted by Joe at 6/27/2004 2:23:41 PM
How do you make vb.net applications available via the web? I would like the apps at a central location, and have the clients just point a browser to them. Any way? Thanks....more >>

Listview control won't scroll fully
Posted by John Dann at 6/27/2004 11:27:46 AM
I have a listview control on a simple vb.net form that's populated programmatically. It is set to scrollable and a scroll bar duly appears. However the scroll bar doesn't allow the bottom rows of the list to be seen. For example, if I have 31 rows in the list with the control set to a height ...more >>

changing mdiparent menu item
Posted by Bernie Yaeger at 6/27/2004 11:24:25 AM
How do you change a menu item of an mdi parent in the child? I tried this and it threw an exception: Dim mme As New baseform mme.MenuItem24.Enabled = False Tx for any help. Bernie Yaeger ...more >>

Program PC Sound Card
Posted by Mike Newman at 6/27/2004 10:26:36 AM
Does anyone know if it is possible to program the PC's sound card using Visual Studio.NET in basic? If so, how can I get some information? I just want to sound notes of a specified frequency either melodically in sequence or simultaneously in a chord. Thanks Mike ...more >>

vb desktop
Posted by Stephen Martinelli at 6/27/2004 9:21:06 AM
Hi all I want to have a form im working on take the complete desktop area...... task bar and all... anyone know the syntax or point me into the right direction? Steve ...more >>

Sending Automatic Email
Posted by Arne Beruldsen at 6/27/2004 6:05:01 AM
I have an online app via webforms. When the user completes the final step...I would like the app to automatically send an email to a specific individual. I'm using the following code: Imports System.Web.Mail .... Dim Mail As New MailMessage Mail.To = "beruldsen@hemingwaysoftware.com" Mail.S...more >>


DevelopmentNow Blog