Answer Questions
CelloJ VS2005 anchor problems on inherited form with a tab control
Anchors of controls, other than Top-Left, on a form that inherits from a form that has a tab control on it creates unpredictable results. This applies to controls placed on tab pages. When the solution runs and the derived form displays the controls may not be in the position where you last placed them. Likewise, when the solution is closed and re-opened the controls may not be in the position where you last plac ...Show All
WH Tan Major flaw when deploying to multiple clients
I've spent days researching this with no results. My problem is basically the same as this post ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=108636&SiteID=1 ), which did not receive any responses. This seems like fundamental problem with deploying ClickOnce apps to multiple clients. The issue is that when the app is deployed part of the deployment process will be changing the deployment URL in the app manifest to whatever that ...Show All
Bob Bannon Webbrowser : specify new pDisp to NewWindow
I would like to finalize the implementation of NewWindow but I am struggling with sending back the reference to the new browser. With an axWebBrowser, It is pretty straight forward : private void Browsers_NewWindow3( Object sender , AxSHDocVw.DWebBrowserEvents2_NewWindow3Event e) { newbrowser = New AxSHDocVw.AxWebBrowser; e.ppDisp = newbrowser.Application; } I would like to add ...Show All
Timbob Why would my Form a = new Form() be *CLONEING* itself? ie the new form != a
Does anyone know under what circumstances could cause a new form to *CLONE* itself when Shown I have a MDI app, and am creating new MDI forms. The forms have the InitializeComponent(); code moved from from the create method to the ShowThisForm() method due to the fact the user could create the form and not actually want it displayed Apart from that one oddity the Parent/MDI stuff is basically normal. It all works (to a point) except the clone ...Show All
津田敦史 Forms inside Splitcontainer
Hi all, In my application "Main Form" I have a splitcontainer which has a treeview control on the left container... What I want to do is load forms inside my applicaition into the right container... Is this possible, and how can I do it Thanks Set the PANEL to Dock property to LEFT. The SPLITTER should be outside the PANEL also docked LEFT(this is the default). Drop the treeview into th ...Show All
GrayShade Alternate Office 2003 Theming?
I just got Whidbey, gotta say, I LOVE IT. Just a few things I'm puzzled by: Why does it seem I can only get the menustrips, toolstrips, and every other -strip that themes in Office 2003 to theme in the same Office 2003 style that Whid ...Show All
IoPi Hide certain standard control's properties from designer
Hi, I created a custom control which inherited from Forms.Button. There's no problems to create & expose custom properties but... I cant find anyway to hide the standard Button's properties... Note that I'm using J# Thanks man, not need to sorry about. you are helping me~ :-)) Thanks for your repply again but I getting the same error... and I got no ideas.... search around internet still cant get any ans ...Show All
TheCompWiz How to specify precision for a datacolumn
Hello I am creating a datacolumn of type Double. I did not find any sample code on how to specify the precision for the datatype. I want to have 2 places of decimal for the datacolumn. This is my code dcCol = New DataColumn("Debit", Type.G ...Show All
AnandaKumar.S Form Distortion
I have three VB.net forms on my desktop - One program only runs Monarch which opens it's form on top of the forms. This causes distortion in the other forms.(part of the Monarch Form imprints on the vb.net forms) Is there a way to prevent this from happening Not related; MonarchObj = CreateObject("Monarch32") // I think you want GetObject here instead If MonarchObj Is Nothing Then '#4 Monarch ...Show All
calavera2nd Disable the X
Is there anyway that i can disable the X close button but i still want to have maximize and minimize. I just want X to be either gone or X to be grayed out so it can't be used. Or without the API: Protected Overrides ReadOnly Property CreateParams() As CreateParams Get Dim cp As CreateParams = MyBase .CreateParams Const CS_NOCLOSE As Integer = &H200 cp.ClassStyle = cp ...Show All
SameerKamat Flash Screen
I am developing an windows application. I want to show a flash screen for 5 seconds, and close the flash screen and load main window. I have put Main method in the Intro Flash form and make the thread sleep for 5 seconds. After that, I am opening Main window. As the Main method is complete, my application terminates. How to design this type of applications Am I doing the correct sequence of methods What is the correct approach to implement this ...Show All
mazen_VC Permissions required for a DataSet inside a Control
Hi, which Permissions do I need when a Control uses internally a typed DataSet In general I've no problems with User Controls in IE, but I've one that contains a DataSet object and that doesn't get loaded due to a security exception. Jürgen ...Show All
codputer ClickOnce with programmatic updates only
Hi, I want to deply a ClickOnce app with automatic updates. But automatic updates should be initiated programmatically (through ClickOnce API), not before/after the application starts. Does somebody know how to disable updates before/after the application starts PS. Setting update every 999999 weeks does not look good to me :-) %-) It works! Thanks a lot! %-( But the "Update ...Show All
RohanP How do i add a comment or a description inside a Function or Method
What i did is a CLASS file with all my functions and methods in to it, but i was looking a way to add comments or a brief descriptions just like VB.NET do when you create a instance to a object and using is method or propert ...Show All
ms_blackhat column width
i'm trying to set the width for a column in my grid, and get an error that thew index is out of range. does someone knows the solution this is the code: Private Sub FillCustomersGrid() Dim S As String &nb ...Show All
