Displaying Form After Removing AxUpDown
Jul 2, 2010
I'm migrating from VB6 to 2008. I am replacing a text box and a AxUpDown control with a Numeric UpDown. I have added the Numeric Updown before deleting the AxUpDown - to check its working. There are no references in the code to the AxUpDown but when I delete the control and run the application I get the form displayed but all the fields are blank, the form is partly see through and the application hangs. I'm not sure what is going on and don't know where to look.
View 3 Replies
ADVERTISEMENT
Feb 27, 2010
I'm dynamically creating x number of textboxes on my form. Once I have done this and the user has done some stuff with them they need to be able to remove all of these textboxes to start again. I've written this code to go in a button, but it only gets rid of two of the textboxes at a time rather than them all in one button click (so it takes like 8 button presses to clear all of the textboxes on the form). Can anyone see the problem?
Code:
For Each ControlObj As Windows.Forms.Control In Me.Controls
If TypeOf ControlObj Is Windows.Forms.TextBox = True Then
[code].....
View 4 Replies
Feb 5, 2010
This is my first post here as I am in the process of writing my first vb program. I just recently learned VBA and prior to that I had no programming experience. I decided that my first attempt with VB would be to convert a program that I previously wrote in VBA. It runs in an excel workbook but it doesn't actually use any excel functions so I figured it would be acceptable to convert. I am having an issue with removing controls on a userform. A commandbutton adds a line of about 6 controls. The user can add as many lines as they need to input their data. One of the 6 controls is a delete button that deletes the line of controls next to it. I have created a collection named Cashflows that holds each line of controls and each line of controls is named with a number that indexes the name to the line that it appears on in the form. In VBA I use that number to delete the actual controls from the userform and reposition and rename the remaining lines of controls.
Private Sub Delete_Click()
Commandbutton3sub(CInt(Right(Delete.Name, Len(Delete.Name) - 6)))
End Sub
View 4 Replies
Mar 11, 2012
I have a lot of buttons on a form (144) that need to be removed. All their names begin with "R". So I used this piece of code.
Sub RemoveBookingButtons()
Dim cntrl As Control
[CODE]........................
However whenever I run this sub function, it deletes every other button starting with "R". better code or point out if the flaw is in that piece of code or it is hidden somewhere else in my program?
View 3 Replies
Oct 7, 2009
i have created a splash screen by removing form border and importing an image to the picture box. also i have set a timer for 7 sec after which the splash screen will close itself and will open the MDI form. But after seven second altough the splash screen closes but it also closes the MDI form too. I am not able to figure out the problem.
Form1.vb
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code].....
View 2 Replies
Sep 16, 2011
How to display contents of ms access database form on a form using vb .net...in visual studio
View 7 Replies
Feb 8, 2012
I'm trying to remove a line from a text file that begins with a set value.
The idea would be to paste values into a Windows form, which then finds each line that begins with that value (a 5 digit number) and removes those lines from the file, and then removes the gaps.
View 1 Replies
Nov 28, 2011
I've recently run into an unexplainable issue regarding a windows form application I am working on. I've managed to isolate the issue to a single line of code whereby a single TabPage is removed from a TabControl, leaving no tabs left in the TabControl's collection. What happens next is a bit mystifying: my application proceeds to enter a state in which the main form's Activate event is fired subsequently followed by its Deactivate event. As a result, no matter where I click on the form, the application will activate for a split-second then immediately deactivate itself, thereby causing me to be unable to interact with any other GUI controls on the form. I thought maybe another thread is trying to interact with the deleted tab object, but the tab is created and destroyed on the same main gui thread. Does anyone have any insight that may point me in at least a new direction? Stepping through the debugger to the point in code where the tab is removed does not cause any exception to get thrown, so at first glance there doesn't appear to be any coding issues going on (although I would not be surprised that is actually the case!).
View 3 Replies
Dec 12, 2011
how to display a form like a menuStrip?
View 1 Replies
Aug 24, 2009
in vb.net is it possible to display a pdf file on a form?
View 3 Replies
Mar 15, 2011
There are two panels in my parent form. In the right panel there is one list view. The problem is that whenever I load the child form, the child form goes back of the list view. I want to load the child form at top of the list view. I tried to set the property of list view
View 2 Replies
Jun 6, 2011
in vb, is it possible to open a form on a second monitor, apart from setting the forms screen position?
View 1 Replies
Oct 15, 2011
How do i display the value of a string variable in a textbox that is in a form without pressing buttons in the form?
View 14 Replies
Jan 26, 2009
I need to display text on the form (not a msgbox). A large text box would be acceptable if it's background could be made transparent with no border, but it seems that is not allowed.
View 7 Replies
Nov 26, 2011
I have a web browser on form2 and I got it to display in form1 and in a panel. But how do I get it to auto re-size in the panel on form1?
View 3 Replies
Mar 30, 2010
I have a windows form with listboxes, buttons and a checkbox. It works fine at home but when I take it to school it doesn't display properly. I have been given full privileges and the .NET framework V3.5 is installed. I have all my buttons/checkboxes on the right hand side but they don't display like they aren't even there (there is no extra blank form space either). The form sized wasn't locked
View 3 Replies
Nov 10, 2009
I've been working on a project now for some time and as a result, when I have something new to try out, I do a little "proof of concept" project and then port it over to my real project (mainly to make it easier to follow when trying to work out new issues).Up to now, I've been relatively successful at it.But here's what I'm running into with this particular project.First, a little background.When the operator enters data into certain input fields (textboxes), either a listview or a datagridview appears displaying multiple columns of information.Once the line is selected with the proper info (equip. id or type of job or whatever), that info gets displayed in the textbox.The problem occurs when display is clipped by the window size.Let's assume for simplicity sake that I can't enlarge the display window.
So I rethought that and decided to create another form that has no borders and the only item displayed is a bound dgv.So I created a proof of concept project that consisted of two forms: form 1 that contains a text box and form 2 that contains a dgv control.when run, form 1 is displayed.When I type a character in the textbox, it calls form 2 and searches the dgv for the first char I entered.Since form 2 is the current form, as I enter additional chars, I build the string, search and if the chars are valid input chars, echo them to the textbox.Once the data line on the gridview is found, the tab key is used to do the select, close form2 (the dgv) and populate the textbox of form 1.This all worked.That is until I tried to port it over into my real project.This is where I'm obviously missing some key aspect of VB.Net and how all the forms and threads and handles work.To get right to the issue and skip alot of what happens in my real project, I was able to duplicate the problem by just creating one more form in my proof of concept project that just has a button on it.That button when pressed, brings up form 1.When I start to type in the textbox, after I enter the first character, form 2 displays, which is as expected. But when I enter the second search character, a second instance of form 2 opens and it searchs for the second character I typed.If I enter another character, it gets added to the second char and located in the dgv of the second instance of form2.When I press the tab key, textbox of form 1 does not get updated but the second form2 does close.The first form2 remains.
View 7 Replies
Jun 21, 2010
How can I print a mathematical formula in a form? For a example I found in wikipedia a guide to do it in HTML: [url]
[URL]
But how can I do it in VB2008, showing the formula in a form?
View 1 Replies
Jul 10, 2009
Iam using ab VB.net windows application. I have placed a label on an windows form, where the sequence value should display on this label each time the form loads.
View 1 Replies
Feb 15, 2012
I seem to be having a problem with displaying data in a second form. I've created a linear search algorithm which works just fine - it locates the records from the database. I now want to be able to display the record in another form, I've attempted this using the code below but it doesn't seem to work:
Public Class formSearch
Dim searchItem As String
Dim currentRecord As Integer
Dim Provider As String
Dim Source As String
[Code] .....
The commented out lines are the ones that don't seem to work. The "txtfirstname" and "txtlastname" fields are located in the coding of another form, called "formcustomers".
View 19 Replies
Jan 19, 2009
i got a problem in displaying my data from the form to rich text format. what i want to happen is that: the rich text should display the text according to the order of inputs in the form. for example: the form allows the user to make and exam with answers. what will be display in rich text are the questions from the form with answers in a separate page.
View 6 Replies
Jun 11, 2011
I am writing a program to control light and sound for a show I'm working on.
The program has buttons and stuff controlling music and sound effects but I am at a loss as to how to get the video part to work.
My computer is hooked up to a projector in extended desktop mode. (I can't change that, otherwise my control panel would show up on the big screen.
I need the video to display on Screen 2 (the projector), so I made a form and used this code:
Dim screen As Screen
screen = screen.AllScreens(1) 'the array is 0 based
Form2.StartPosition = FormStartPosition.Manual
Form2.Location = screen.Bounds.Location + New Point(0, 0)
Form2.ShowDialog()
to display it when I press a button. This worked fine, I set form2's border to none and fullscreened it, tested again, no probs. My problem arose when I tried to add a WMP ActiveX control. I ran the program, pressed the button, and... form2 (along with WMP) appeared on my laptop display. I desperately need this by tomorrow. If no solution is available, is there an alternative to WMP?
View 2 Replies
Oct 2, 2009
I can display a record in a detail form using the same data source:
[Code]....
View 5 Replies
Jun 6, 2011
i'm working with a sql (2005) database and using visual studio 2010. I've created a system where one of the forms is a find/search form. A user can enter in for example, a customerID and once they click on "find/search" the customerID will be searched in the database and if found, all relevant information about the customer will be retrieved and displayed in another form (find/search results page). I realise that this can be done using an SQL statement like follows
searchStr = "SELECT * FROM Customer WHERE CustomerID LIKE CIDTextBox.Text%"
What i'm unsure about is how to execute this SQL statement once the "find/search" button has been clicked and how to display the founded results in another form.
View 7 Replies
Sep 21, 2009
I wrote a small bit of code to prevent multiple instances of my program from being loaded. Here is the code.
[Code]...
View 2 Replies
Mar 11, 2010
I have a requirement of storing employee's image in databse and retrive them in a form. I could insert image into the database but when I am retriving it , it does not get working. So if anybody knows the code for retriving image from database and displaying in a form ?I am using MS SQL Server 2005 as databse.
View 1 Replies
Nov 23, 2009
I have a VB 2008 windows application that I'm working on; the data are stored in SQL. I have a lot of fields that user will need to fill out. Some fields that not displayed on the form are actual combination of few filled out fields. For example - user types in first name, middle name and last name in 3 separate boxes on the form and I'd like to combine those and assign it to the "FullName" field. I know it's duplicating the data but this FullName field would need to be merged into report as is in a different program.
Another example - user will pick a data in combo box that is binded to a different table, but I need it to auto-populate 3 fields in the main form (those fields are not displayed). I know that I can actually add all those hidden fields on the form and assign calculated values based on user input and then everything is saved with built-in "Update" command. I was wondering if there is a way to specify those few calculated values as parameters and still use "Update" command without actually typing long Update command. I have over 400 fields - very lengthy command.
View 20 Replies
Feb 17, 2010
I'm using Microsoft Visual Studio 2008 to create an application (.VB). The application connects to a Microsoft Access 2007 database. When the user starts the application, the application pulls in the data from the database via the "TableAdapter.Fill" method. The user can then add/update/delete records in the form and those changes are saved and confirmed in the database. The problem is when the user close completely out of the application and restarts it, the modifications that were made and originally sent/saved to the database are wiped/deleted. It appears that the dataset in the application never saves the modifications and when the program restarts it uses the data that was originally loaded into it during the design/build phase of the application.
View 3 Replies
Mar 11, 2010
I've got a module for my program thats displays the active time and date, on a form. For some reason my code is incorrect and nothing happens when I run the form. Heres the code I have in the module:
Module ModDateAndTime
'Declares tmrdat as a timer with events
Public WithEvents tmrdat As Timer
'declares lbldat as a label
Public lbldat As Label
[Code] .....
And the code in the form's:
'declares lbldat as lbldateandtime
lbldat = lblDateandTime
The relevant label in the form is named lblDateandTime
View 12 Replies
Mar 20, 2012
I am trying to display FirstName value from my database to a label in my form but it always gets an error. InfoDb is my Access Database. It contains the ff columns: UserName, Password, and FirstName. _AccName is the passed text in UNameTB-textbox in my login form which pertains to the UserName in my database.
[Code]...
View 1 Replies