| how to inherits Event (VIP replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| I want to create a base class which has a base event. the child class will Inherits the event. so I can concentrate the Event pool. I donot know how to do this . need help |
|
| How to know the application is in use or not (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Dear All, I am Joby M.Chacko. In my appliaction i want to know whether my application is working or not. Context is AuotoLogOff. If the application is not using for a particular time, the application has to exit. (C# Pocket PC Apllication) Thanking You. Joby M.Chacko. |
|
| How to Line Break (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| In the following code all I want to do is to break a line (an enter in ms word) between each of the variables countOrders, stageTax, stageOne. I think in vb 6.0 all you have to do is "....." & "this will be on a new line" It don't work...Plz Help Private Sub cmdSummary Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdSummary.Click MessageBox.Show("Here is your Order:" & countO... |
|
| How to Make a TextBox Behave... (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| How do I make a TextBox behave like the address bar in IE? That is... If focus is not on the tb, select all text if clicking on the tb or tabbing into the tb. Clicking again deselects the text and sets the insertion point to where clicked. I've tried several options inheriting from TextBox but none work quite right. Thanks Much, Gene H. |
|
| How to manage column's color in DataGrid ? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi there, Can anybody tell me how to change the column's color in DataGrid ? I have tried, but didn't work. Here below is my code. There is an error at line ##. The error message is : "An unhandled exception of type 'System.NullReferenceException' occurred in Badminton.exe Additional information: Object reference not set to an instance of an object." Thanks for help. My code: Private Sub frmGridDi... |
|
| how to modify the quick start example to connect to an access database (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| ' Any Suggestions %@ Import Namespace "System.Data" % %@ Import Namespace "System.Data.SqlClient" % html head link rel "stylesheet"href "intro.css" /head script language "VB" runat server Sub SubmitBtn Click(Sender As Object, E As EventArgs) Dim DS As DataSet Dim MyConnection As SqlConnection Dim MyCommand As SqlDataAdapter MyConnection New SqlConnection("server (local)\NetSDK;database pubs;Truste... |
|
| How to Move form without titlebar (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi Can any one tell me how to move a form without titlebar as we can use WIn API in VB 6.0 is there any other method or xyz for the same Sumit |
|
| How to open a new browser window in ASP.net? (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hello, i have an ASP.net page with a button. When the button is clicked i want to open a new Browser window (400x200px) having only the title bar and nothing else.This browser window would load newpage.aspx in it. I would also like to know how to create a button to insert in newpage.aspx and that would close that same window. I have no idea of how to do this and until now i didn't find some inform... |
|
| How to P/Invoke the RasGetEntryDialParams method? (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Hello, Can anybody provide a code snippet of how to P/Invoke RasGetEntryDialParams? Anytime we try it the function returns with an errorcode 87 (invalid parameters). I guess the problem lies in the LPRASDIALPARAMS struct members which probably aren't set correctly. Many thanks in advance. Roberto Rocco. |
|
| How to Parent.... (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.controls |
| I have some form, that has panel where I'm loading components like that: this.pnArea.Parent new CustomComponent1(); this.pnArea.Dock DockStyle.Fill; Works fine till now... Now I want to load other component (CustomComponent2) INSTEAD of the current component(CustomComponent1) by firing event from the current component (like click or else)... How to do this???? Tnx |
|
| How to pass parameter between two forms? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| There is a button in form A , as the users click it, Form B will show. however, how can i pass the parameter to form B . the parameters got (tablesname,search condition). As form B receive these condition. the listbox in form B will show the result. How can I do this ?? Thanks in advance From Agnes Cheng |
|
| How to pass parameter to second form? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I am invoking a second form and would like to pass a parameter. My code is: Private Sub btnHelp Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnHelp.Click Dim frmAdminHelp As New frmAdminHelp frmAdminHelp.Show() End Sub When the second form executes, it needs to know where it was called from. How do I do this? TIA, John |
|
| How to Paste WMF from Clipboard (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi group, I am using a 3rd party AX control in a VB.NET application. One of the methods of this control is to capture the current map within the control to the windows clipboard as .WMF. I am automating some precesses for the client and I don't know how to programmatically paste the WMF from the clipboard to another control in the application. The picture box control supports WMF but I don't know ... |
|
| How to pause/suspend a process? (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| My GUI application starts a process (a console program) when the user hits Play. I would like to add an option to pause that process. The code I've added to detect if the user hit pause/unpause seems to work. But I have no clue how to pause/suspend the process. As far as I can see the Process class doesn't offer anything for this. So it's probably the thread the process is running on that should b... |
|
| How to pop a message box in ASP.NET page (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, All I am trying to pop a message box in ASP.NET using JavaScript when I click a button, but I realize the JavaScript works for HTML control button do not work for ASP button. Any idea how to use JavaScript to trigger a message box for ASP.NET button? Thanks for any help. Kai |
|
| How to populate a second drop down based on the content of a first (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi, I have two drop downs and the content of the second one must changed everytime the user changes the selection in the first one. Is any easy way of doing this? Thanks in advance. Alonso |
|
| How to populate dataset with Access (VIP replies) |
| microsoft.public.dotnet.framework.adonet |
| Hi All, I am new to VB.Net and am having a problem with the below code. I am trying to fill in a datagrid with the below query but it keeps giving me error where the *'s are located below. I have an OleDbDataAdapter, OleDbConnection and DataSet on my form. Am I supposed to do something with dataset before it is populated? This is the actual error: An unhandled exception of type 'System.Data.OleDb.... |
|
| how to position control (VIP replies) |
| ASPFriends.com 'aspngreuse' list |
| Moved from [aspngcs] to [aspngreuse] by darthcarroll@asplists.com i have engineered the user control that is a table . i call it from page but this table show up at top of page? how to tell table to load where i call it in middle of page? kindly, apo Do You Yahoo!? Send a newsletter, share photos & files, conduct polls, organize chat events. Visit http://in/ groups.yahoo.com |
|
| How to prevent Label text from wrapping? (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| This seems like a stupid question, but I can't find the property to prevent the text in a Label control from wrapping on the next line. Thanks. |
|
| How to prevent Postback URL's from being added to browser history (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Each time a webform is posted back (submitted), another URL is added to the browser's history list. My web application allows a back button to return to previously visited pages, but I do not wish to return to each Postback URL, but rather only the initial page URL. Is there a way to prevent Postback URL's from being added to the browser's history list? Thanks in advance for any help. |
|
| How to prevent the drawing of multiple lines on form? (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| Dear colleagues, I refer to your help with specific graphic problem. It is necessary to create a viewfinder in graphic application. It seems that the algorithm is simple: just draw lines in specific position in according to value of some controls, track bars, for example. Next read the track bars value to find the coordinates of lines cross. It works, but I can not get real cross because the backg... |
|
| How to programmatically change properties of many controls on a form (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I am writing a Visual basic .Net database application. There are many forms that first let you select and look at a DB record and then when you click a "modify" button you are allowed to change data in the text boxes. Then an "update" button saves the data back to the database. What is the best way to change several properties on most of the textbox controls on the form when the "modify" button is... |
|
| How to programmatically convert Word doc to ASCII? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Looking for a method to programmatically convert (using vB) a Word doc to it's ASCII equivalent. I understand I'll lose all formatting, and that's okay. Anyone out there have ideas? Thaks! Dennis |
|
| How to raise a standard event on windows component (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I have a combobox with a SelectionChangeCommitted event handler, and am having a problem raising this event. For example, raiseEvent mycombobox.SelectionChangeCommitted gives me an error about not being ended properly. But it won't accept parameters either. What's the trick here? Jeremy |
|
| How to Raise events from a form? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi guys, I'm sure this has been addressed before but can;t seem to find any specific answers.... I have an MDI form that opens a child form. What I would like to do is have a child form event happens to be a toolbar click available to my mdi parent. I'm sure it can be done and in fact I think I've seen code in the past... but now I need to employ it........ Any help would be appreciated. Thanks, G... |
|