forms

  1. E

    Question problem with ProcessTabKey and combo boxes

    Hello. I'm trying to detect when the tab key was pressed and intercept it in certain cases. Since the form I'm working with has many fields, I've tried overriding ProcessTabKey so that I don't have a separate sub for each control. However, I've found that after adding a simple ProcessTabKey...
  2. C

    VB Form Equivalent to Asp.net Nested Repeaters

    Hi All, this is my first post so please go easy on me! I'm trying to convert an asp.net website to a vb.net application. It's my first go with vb.net so please try and make any responses as simple as possible. On my website I have a page that uses nested repeaters. The data source is a dataset...
  3. A

    Windows.Forms namespace?

    Why I'm not able to see the System.Windows.Forms namespace using the visual basic .net express 2010. Anyone has encountered and hopefully solved this problem?
  4. bmw325ist

    Closing a WPF Window or Form after crossing threads?

    I want to close the main form after another process has exited if the user says yes. I have the MainWindow Class and a modProcess Class coded below. I'm using VS 2010. For whatever reason, the object Me or MainWindow is not accessible, how do I fix it? Thanks. Public Class MainWindow Dim...
  5. A

    Delete record problems

    I am developing a VB.Net application using Visual Studio 2008 (VB) and SQL Server 2008 Express. I have a table with (say) 7 records in it. If I select a record and then hit delete, the record is deleted but the counter shows that 2 have been deleted. If I have 1 record in the table, an...
  6. R

    MDI Child Problems

    I have a MDI based application with two problems. First: when i close the MDI child i want to ask if the user would like to save the data in the child and give them the regular choice yes,no,cancel however when i try to use the Formclosing event it never fires, it does fire for the mdi parent...
  7. T

    Question Decoding special characters with Request.QueryString.Item

    Hey folks I'm having a problem and I'd like your help. I'm trying to decode special characters in parameter values passed into a web page. Here's my script: <%Response.charset="UTF-8"%> <%@ Page Explicit="true" %> <script language="VB" runat="Server"> </script> <?xml version="1.0"...
  8. G

    Question Set Listbox Checked problem on load, activate, shown event

    Hi, I've been having a problem setting certain items in a listbox as checked when the form is loaded. I have tried putting the code in the form_activate, form_load, and form_shown events and each still crashes when it encounters: Dim m As Integer = 0 Me.lstLineLayers.SetItemChecked(m...
  9. G

    Set property of parent class from child

    Hi, I would like to have a form class that is called from a button on a parent form and would like a button on the child form to set a property on the parent form. Can anyone explain the best way to go about this or direct me to a good article? In the parent class: Private Sub...
  10. P

    Question form skins in toolbox?

    Does anyone know of a tutorial or a free dll that will show me how to create a new form skin with my choice of colors, styles, button shapes, etc, that I can put in the IDE VB toolbox so I can select it when I want a new form skin?:confused: I am using VB 2005.
  11. C

    Retrieve values from objects between forms

    Hi, In VB.net how do you retrieve an value from a object in a different form. (please correct me if i'm using wrong / bad terms) eg: ' on frmMain MsgBox ("Say ""Hello World"" Mr. " & frmOther.txtName.text)
  12. M

    Question Insert into multiple table (1:N relationship)

    Hi. I am trying to build a form in VS Express (VB.net). The one table form is not a problem, but when i try to build form with two tables which are in 1:N relationship, I just can't find the solution. For example: Table1: player_id name lastname . . . club_id Table2: player_id club_id...
  13. M

    Linking forms

    I have problem linking one form to another like lets say i have two forms. The first form has buttons linking to other forms. So the main menu called mainmenuform has a button which when i click must show the the sales form called sales_staff and hide the main menu form so what is the coding for...
  14. A

    Convert PDF to Word document formats with Aspose.Recognition

    What’s new in this release? Aspose.Recognition for .NET has come out of Beta and its first commercial release has been announced supporting many new features. You can download Aspose.Recognition to evaluate improved performance of converting PDF files to Word document formats. More about...
  15. R

    Question Table based "forms"

    Hello guys, I am more familiar with oracle developer and recently started with VB.net (VS 2008). Would appreciate if somebody could provide me some information regarding the following: I have an Oracle table consist of around 39 columns and want to create a data entry form against it using...
Back
Top