VS 2008 User Control Complication With Windows Forms?
Nov 24, 2010
I have a program that I am creating in a windows form to track information about computers that I build for each project I do. The way I have my form layout is two buttons on the top of the form(1 for adding a computer and the 2nd to remove a computer) I then have a Tab window where when I want to add a computer I use the "Add button" click event to create a new tab and add a user control "Computer" that I created that contains all of the default fields that I desire (i.e. serial numbers os type, product key etc.) The "Computer" user control also contains two buttons (1 for adding a PC Card and the 2nd to remove a PC Card) The PC Card is another user control that I have created that has all of the desired fields I require for PC Cards. I am able to add new computers with no problem and name the tab
Dim b As New Computer
Dim x As String = Me.TabEquip.TabCount - 2
Dim tab As New TabPage("Computer" + x)
[code].....
View 2 Replies
ADVERTISEMENT
Mar 16, 2009
I can't get this to work get a funny icon in the top left corner of the are where the user control is suppose to appear, here is my html markup.[code]
View 4 Replies
Apr 15, 2010
In my project i added a User Control so that i can reuse in different Windows forms.I designed and coded the UserControl1 according to my need and now i want to use it in Form2 but i cant understand how to do it?
View 2 Replies
Dec 9, 2009
I got an error that i cant convert string to System.Windows.Forms.Control and i was wondering how could i do it this is the code that contains error:
If ResultRichTextBox.Contains("Text") Then
View 2 Replies
Apr 4, 2011
In a label box, I want to list a couple of websites, email address along with some text. How do I go about it?
Potential uses- As a Help > About dialog box where websites, email of the author can be listed.
To make things as easy as possible for the user, and encourage visiting of the mentioned websites.
Simple text will be ignored, while standard blue color, underlined text with hand mouse-cursor will need no thinking on user's part.
View 1 Replies
Sep 24, 2009
I have cooked up my first iteration of a code generator which creates the basic Entity models from a SQL Database Schema. Currently, It will scan a SQL Db Schema, and create .vb code files complete with private members and Public property declarations for every User table in the Database. My next step is having it add the basic CRUD procedures as well. Are we mere mortals able to access whatever technology allows the Partial class files created by vs to be hidden/Linked to their "parent" files, such as the Partial Class files for Windows forms or any other designer-generated control? My thinking is that it would be handy to be able to re-generate code files from the database if necessary to reflect changes in the schema, without overwriting any other properties or methods added to a class in addition to those derived from the database. SO I am hoing I can have the Auto-generated output go to a Partial Class file, and then use a regular class file of the same name for the rest of the code. My Concern is the multiplicity of files that might result, so I was hoping it is possible to "tuck them in" to the parent code file in the Class View.
View 7 Replies
Sep 8, 2010
I have the code which checks if there is a selected tab
Private Function GetBrowser() As WebBrowser
If TabControl1.SelectedTab IsNot Nothing Then
For Each c As Control In TabControl1.SelectedTab.Controls
If TypeOf (c) Is WebBrowser Then
Return c
[Code]...
View 2 Replies
Feb 11, 2011
I am creating a form for work where managers can report when they find a customer's personal information laying around on a desk (we work at a call center where agents answer calls for a wireless cell phone provider, so we take personal information security very seriously). Anyway, I am wondering if there is a way to have a text box autofill with that manager's windows username (since they will need to be logged into their own profile to use the form).
View 2 Replies
Feb 12, 2009
I Need Build a user control which works as a Login control using Windows Class Library or Component Template:The user control returns the user name and the password It means that the control has minimum two ReadOnly Property procedures. You let the user of your control (he/she which uses your control in his/her software) to set the background colour of the two labels. Create a Windows application to test your control.
View 10 Replies
Nov 2, 2008
How do you cache user session in a windows forms application? So that the user session expires when inactive for a certain period of time. I wish to include that functionality using an integrated security and caching application block from microsoft's patterns and practices.
View 2 Replies
Apr 13, 2010
I only managed make the form always on top. But what I want is when the form is on top, user cannot access the other application in the windows.
For example : Some messagebox won't let users access the other application until the users hit the OK button.
View 1 Replies
Jul 22, 2011
I'm developing a windows forms application using VB.NET. I'm currently working on DataReport (by Microsoft, not Crystal). Everything works fine when using DataSet as DataSource. But I have a question on how am I going to put data to my DataReport from a user input? Preferably when the user is on the act of printing(clicking the print button in the ReportViewer), a Form will pop-up and ask him for input. That input I'm talking about is random names of people, and we don't have to track their names so there's no reason to put it on the database.
Here's my simple setup:
MainForm.vb (Form)
MyReportViewer (ReportViewer)
MyReport.rdlc (DataReport)
[Code]....
If it is impossible to do it on the act of printing. Maybe on the MainForm_Load event or before the generation of report can do.
View 1 Replies
Aug 28, 2009
i am using vb.net 2005 to developed desktop application ,I am having two windows form user control , the first control name con.vb containing the design and code for connecting to database and getting a list of my project values in combo box.Now the second user control report.vb which i am using to generate some reports , since the code behind is using connection to connect to various project database , so i want to get the value of First user control into another how i can get the i have tried the below but its giving me error in run time but no error in design or code behind [code]
View 4 Replies
Mar 25, 2010
I have the need to embed what I want to call an ActiveX component into a webpage on my intranet. The reason I want to do this is, I'd like to check if a USB security token is inserted on the end users PC.
My question is: what do I need to be researching to accomplish creating a control which can be embedded into Internet Explorer when programming in VB.NET?
View 1 Replies
May 15, 2009
I created my user control for email validation in windows application(C# language).I am using it in the form, if the user leave that textbox it ll show message "E-Mail expected",if its correct value, then it ll be stored in another textbox. How can i retrieve values from the user control into textbox.
View 4 Replies
Oct 13, 2009
am build my first windows user control project. It consist of the User Control window and a textbox. The idea is that it will only accept numbers as user input.I have added the controls and code in the textboxes keypress event.Built and added the control to the VS toolbox. Started a new app and added the control to the designer.
View 6 Replies
Feb 9, 2009
I created a user control with a listbox in it and a public property ListItem()
Public Property ListItem() As String
Get
Return _ListItem
End Get
Set(ByVal value As String)
_ListItem = value
End Set
End Property
On FormLoad I wish to fill the Usercontrol Listbox with the values that the user supplies.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim u As New UserControl1()
u.ListItem = "hello"
u.ListBox1.Items.Add(u.ListItem)
End Sub
The Listbox does get filled.
View 6 Replies
May 16, 2011
Where in VS2010 can I find a horizontal separator control, as can be found in Outlook settings (screenshots below)?[URL]..
View 3 Replies
Jun 30, 2011
Whatever project I'm making, I always encounter a problem with a Windows Forms Timer control, I guess I just make a little mistake somewhere... So I thought I'd post it here and hopefully someone here can explain what I'm doing wrong.
[Code]....
View 3 Replies
May 17, 2010
I created a custom user control named "XYZ" and It is avaialble at the toolbox menu in the design mode and I can drag and drop it to a vb.net Windows form. What I really want is to dynamically to add this user control to the Windows form during the Windows form load event. Actually I want to add this user control to a "split container" named "sc_1" on the tab page named "tp_1" on a tab control named "tc_1" on a Windows form. What is teh vb code to add a user control to a Windows form. I am using vs 2005 and dotnetwork v2.0.
View 3 Replies
Jul 1, 2011
how to create an use control?this link http:[url]....
View 4 Replies
Sep 15, 2010
In the process of testing of old (XP compatible) applications with Windows 7 we have xperienced a problem, that our major application Clarify (based on VB engine) does not work properly with turned on UAC (SendKeys and DoEvents do not work). Having turned off UAC, works our application error-free. Due to the corporate policy we cannot turn off UAC but we are looking for a solution, how to turn off UAC (not prompts) only for our application or how to het to work an application based on VB with turned.
View 2 Replies
Nov 16, 2010
What i want is :
There is one windows app ( made in .NET 3.5, VS2008, C# ) for Windows XP SP2 & SP3
generally users can change there IP or modify their IP Address.
Now,when my apps starts i dont want users to change there IP Address untill my app stops.
View 3 Replies
Mar 30, 2009
I am trying to figure out how to generate code from user input. In Visual Studio 2008, Visual Basic.My script always begins with:function Init (Quest)Then from here a user would input a quest name, type and zone in a interface using windows forms.[code]I would also like to have these available on the UI but wont generate unless a user checks a box to add them or there is a box already for them but wont step into the code unless the user enters something into the box.Is there anyone that can explain how I would go about doing this. Or maybe some kind of visual studio plugin that will help me out.
View 2 Replies
Apr 26, 2011
I dynamically load a user control in a form (Form 1).
In my user control there are two things :
a Textbox (TxtBox1) and a Command Button
WHen the button is clicked, it opens a new form (Form 2) Form2.ShowDialog()
My question is, in Form 2, how can i set a value to TxtBox1 of the user control?
View 2 Replies
Feb 6, 2012
I need a nudge in the right direction. I have a user control that has the main form and it calls a secondary form to gather some additional information in some cases. I need to pass the information back from the secondary form to the primary user control form so I can validate the data and save. In the secondary form, I have the following code:
Dim myFrm as new frmOperationComments
myFrm.OperationComments = [comments from form]
myFrm.OperationDate=[Date from form]
I have tried creating two public properties on the user control and setting them, I have created two properties in the user control form called OperationComments and OperationDate. I can set both of them, but when I close or hide the form and go back to the main user control form, the values for these properties or variables are not set. How do you set the values on the main form from a calling form within a user control?
View 2 Replies
Jan 3, 2011
is it possible to add images to listbox control of windows forms..
if I do it anyhow using items.add method one item at a time then how to add items valuemember to items ..
View 6 Replies
Mar 25, 2010
I need ability to display content in Hex View, like this from WinHex
Offset 0 1 2 3 4 5 6 7 8 9 A B C D E F
00000000 EF BB BF 0D 0A 4D 69 63 72 6F 73 6F 66 74 20 56 ..Microsoft V
00000010 69 73 75 61 6C 20 53 74 75 64 69 6F 20 53 6F 6C isual Studio Sol
[code]....
View 3 Replies
Nov 4, 2009
I have to design a custom "log grid" control to use in another of my projects.Up front, I am new to vb.net 2008. I have used VB6 for years and I am trying to learn how to resove the differences as I go. But I need help.
This log grid contains 96 columns and 4 rows.I tried using the TableLayoutPanel and a Panel per cell but found the control to slow to paint. That's 384 discreet controls.I am now trying a usercontrol with a panel and GDI+ to create the grid. I've created a collection for the columns and a collection for the rows. So far so good. My mouse clicks raise the correct events per cell.
I now need to indicate which column the mouse is over. This is the problem. The column must be highlighted by a vertical bar from the top of the column to the bottom. It must also be transparent. I need to see the gridlines under the highlight. I've tried using region using the following code. (myRegion is declared Private MyRegion as Region at module level for persistance)
[Code]...
View 4 Replies
May 30, 2009
I have a User control having two panels. one at the top border and second at the bottom border of the control.
The panels contain some buttons on the click of which i want to display some forms. But I want thoes forms to act like children of the user control i.e. like MDi Parent - Child (here parent being User control and child being the new forms which would be opening). Unfortunately i've not been able to find any way of do'in so.
View 2 Replies