OnMouseMove Not Being Continuously Invoked On Custom User Control?

Feb 8, 2011

http:[url].... contains a Visual Studio 2010 Solution with a Form and a User Control.

Question. Why isn't OnMouseMove (at top below Constructor) being called with every movement of the mouse across the UserControl's grid?My intention is to have a reticle (crosshairs) replace (override) the existing mouse cursor and show a reticle with x and y coordinates?I have another form upon which a User Control with similar functionality is working perfectly.

View 3 Replies


ADVERTISEMENT

Embed A SilverLight Control In ASP.NET Control (user Or Custom)?

Apr 29, 2010

We have a ASP.NET web application written in VB.NET where we build content programmatically during the Init event.We make extensive use of user controls, building them on the fly, and I now want to start including SilverLight content.Is there an easy way of embedding a SilverLight application in a control, and then instantiating the whole thing in code, in the same way as you'd programmatically add ordinary ASP.NET controls to a page?The SilverLight component itself works fine when added to a page using the <object> tag but I really want to be able to reuse it elsewhere in code.Since I'm expecting use of SilverLight to increase in our application, and the asp:Silverlight control seems now to be deprecated, I'm looking for an alternative way of wrapping the content.

View 1 Replies

Custom Event In User Control

May 10, 2011

I've got a page (aspx) that contains a usercontrol (ascx).On postback of the aspx, I'd like to read some control values in the ascx. So upon reading some good articles, I created an event in my aspx that fires on postback.The event handler is in the ascx, and simply writes the values I'm interested in to the viewstate so that the parent page can read them.The problem is my event handler never gets hit, even though I see the event is raised as I step through the code. So my code bombs when trying to read the viewstate (which is empty)[code]Oh, did I happen to mention I'm dynamically loading the ascx? :)

View 2 Replies

Inheriting From A Custom User Control

Oct 28, 2011

I have a component class that inherits a user control class and i'm trying to inherit from that same class in a new class.public class B inherits class Unfortunately, I get an error pointing to the .g.vb file saying:Base class 'System.Windows.Controls.UserControl' specified for class '...' cannot be different from the base class '...' of one of its other partial types When I swap the "Inherits System.Windows.Controls.UserControl" with inherits from the base class in .vb files the program compiles but when I try to access any of the components I get an error saying "Object reference not set to an instance of an object."Why is it doing this? it's as if the my sub class isn't inheritingUserControl method at all.

View 2 Replies

Custom User Control Graphics Rotation?

May 31, 2010

I'm trying to build a dial control as a custom user control in VB.NET. I'm using VS2008.so far I have managed to rotate image using graphics.rotatetransform . however, this rotate everything. Now I have a Bitmap for the dial which should stay stable and another Bitmap for the needle which I need to rotate.so far i've tried this:

Dim gL As Graphics = Graphics.FromImage(bmpLongNeedle)
gL.TranslateTransform(bmpLongNeedle.Width / 2, bmpLongNeedle.Height * 0.74)
gL.RotateTransform(angleLongNeedle)[code].....

As I understand it, the image of the needle should be rotated at angle "angleLongNeedle" although i'm placing the rotated image at 0,0. However, the result is that the Needle doesn't get drawn on the control.

View 2 Replies

Add Custom User Control To Windows Form?

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

Custom Progressbar As A User Control - Get The Ocx Or Dll File

Nov 13, 2010

I made a custom progressbar as a user control. And I have only been working with forms 'n classes. As you all know, when you create a component in class, it gives you the dll file for the custom component or whatever you made so you can use it on any program. On my custom progressbar, I don't know how to get the ocx or dll file so I can use it on my other programs. OR.. if this is even possible lol. If you could help me on this, that'd be great. And I don't know how to make a custom progressbar out of a class, only user control, so if you could teach me how to make a progressbar out of a class, then that'd be awesome too.

View 3 Replies

How To Create Custom Events For User Control

Oct 15, 2009

How to create custom events for contol. i have created a user control mytextbox & i am showing some properties of textbox & now i want to expose user control events

I am showing Following properties to user

CODE:

How to expose Events

View 3 Replies

Shadowed Events In A Custom User Control?

Nov 11, 2009

I have created a base class for some user controls, then I created controls that inherit this class. This is so I can CTYPE the inherited controls back to the base class and refer to properties, methods and events in a common interface. The base class declares has some Public Event BLAH(Sender as object, e as EventArgs) declarations. The derived class then has Public Shadows Event BLAH(Sender as object, e as eventargs) declarations. My parent form adds handlers for the BLAH event. When the derived class fires the event, though, it does not get raised to the parent form.

View 1 Replies

User Control Custom Event Program

Jan 16, 2010

I had this new idea for a user control Sliding Bar/Panel. See screenshot. So I quickly whipped it up but I've got this problem that I cannot figure out why it does not work. Because I wanted to make it nice and tidy I desided to use a Class (Header) and created a TypeConverter (HeaderConverter)

Code:
Public Class HeaderConverter : Inherits ExpandableObjectConverter
Protected SortOrder() As String
Public Sub New()
SortOrder = New String() {"Text", "Depth"}
End Sub
[Code] .....
and goes to the RaiseEvent but nothing happens Why?

I know I could put properties on the Container control to access the ctnbutton Control that is embedded into the control but I thought this might be a nicer way.

View 13 Replies

Wpf - Fire A Custom Event From User Control?

Feb 10, 2012

I have a user control (SomeUserControl), that I am using in a Main Window. I write my application entirely on SomeUserControl, and Main Window is hosting SomeUserControl and nothing else.

Right now I have a shutdown button (in SomeUserControl), that is supposed to close the Main Window. The reason for this is that I do not want anything from SomeUserControl to close the application itself, but to fire an event from SomeUserControl, and Main Window receives it, and Main Window will close the application instead of SomeUserControl.

How do I do it? I am not familiar with the concept of creating and handling custom events, so if someone could explain it in words and in code as an example, I will be very grateful to you!

Edit: Here's my code so far.

(in Window 2)

Public Event CloseApp As EventHandler
Private Sub CancelButton_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles CancelButton.Click
DialogResult = False

[Code]....

I want to close the application when I click cancel in Window 2, but I don't want to do it in such a way that Window 2 closes itself, but by sending some notification to Main Window, and Main Window closes the application.

View 2 Replies

Know About User Control And Custom Control?

Jan 9, 2012

I want to understand N-tier architecture like when to use and so on.Also I would like to know about user control and custom control.

View 4 Replies

3 Column Checkboxes In Checkedlistbox Custom User Control

Jun 2, 2011

I need a way to have 3 colums of checkboxes inside a checkedlistbox. I know i could do it with a panel, labels and checkboxes. But having them all in the control would be more convenient. I'm pretty sure there is no direct way of doing this, so i assume i need to create a user control. If you're not completely sure what i'm trying to create, i'm going for something that looks like this: [URL]

View 1 Replies

Asp.net - .NET User/server Control With Custom List Items?

Feb 18, 2011

I'm attempting to create a simple menu user control just as outlined here. The attached code results in an "Object reference not set to an instance of an object" error, but I can't figure out why.

<%@ Master Language="VB" CodeFile="MySite.master.vb" Inherits="MySite" %>
<%@ Register src="Controls/Menu.ascx" tagname="Menu" tagprefix="my" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">

[Code]...

View 1 Replies

C# - Use ResolveUrl() To Set Some Paths In The Code Behind Of A Custom ASP.NET User Control?

Mar 31, 2010

I'm trying to use ResolveUrl() to set some paths in the code behind of a custom ASP.NET user control. The user control contains a navigation menu. I'm loading it on a page that's loading a master page.When I call ResolveUrl("~") in my user control it returns "~" instead of the root of the site. When I call it in a page I get the root path as expected. I've stepped through with the debugger and confirmed, ResolveUrl("~") returns "~" in my user control code behind.Is there some other way I should be calling the function in my user control code behind to get the root path of the site?

View 4 Replies

Created A Custom User Control At Work Using VS Express

Oct 6, 2009

I created a Custom User Control at work using VS Express. It was added to my toolbox and then I added it to my form.When I created another one at my home use VS Pro, I think, it was not added to my toolbox and I'm not sure how to access it.

View 6 Replies

Creating Custom Template Button User Control With WPF

Jan 17, 2012

what i am trying to do is create a custom user control for my WPF forms that is a button with both text and an image. Everything that i have found is using C# and i am using vb.net.

View 4 Replies

How To Make Property Mandatory On Custom User Control

Mar 6, 2012

I have a custom control and would like the properties to be mandatory (not default) when a programmer codes the control. Is there a good way to do this without throwing exceptions in the program?

View 2 Replies

IDE :: Adding Buttons To A Toolstrip In A Custom User Control

Oct 23, 2009

There is a response to this question using C# - I am looking for a VB answer and the C# code is too deep for me. I have a custom user control and I have a toolstrip on it. I have certain default buttons on the toolstrip, but I want the user to be able to add additional buttons at design time. I exposed the Toolstrip.Items collection in a public property. I can open the collections editor in design time, but I cannot edit the collection.

View 1 Replies

User Control With Simple Textbox - Custom Properties

Oct 15, 2011

I've created a user control with a simple text box and a corresponding label and added a few custom control properties. When added to a form, I'm trying to loop through all control of this type and evaluate the custom property. In the below, the cntl.MyCustomProperty is not recognized. I can evaluate the property when I check each user control on the form by name, but not by using the loop below. I would much rather use the loop as it is much cleaner.

For Each cntl As Control In Me.Controls
If (TypeOf cntl Is MyUserControl) And cntl.MyCustomProperty = "ABC" Then
''Do some stuff
End If
Next

View 2 Replies

VS 2008 Add A Custom User Control To A Form Or Project

Mar 19, 2009

I'm coming over from VB6 in which you could use 'user controls' to create reusuable custom controls. They were simple and contained and you can easily create several instances of a user control within the same or other apps. In vb2008 there are user controls but I can not figure out how to add them to forms or or other apps. Can someone please give me the the basic steps to add a custom user control to a form or project.

View 6 Replies

VS 2010 Creating A Custom User Control, Don't Know Where To Start?

Oct 26, 2011

I figured it out. Check out the finished control [URL]..I'm trying to make myself a simple 'star rating' control.

It would have the properties:
StarCount (number of stars)
StarValue (number of stars highlighted)

I want to draw the stars using GDI+, have them highlight on mouse over, and change the StarValue when clicked.I have an idea on how to do this from experience with working with forms, but I'm having some difficulties with the Control development part. I couldn't find any tutorials which didn't inherit a control (such as a checkbox or button), and I have no idea how to make my control editable in the designer.

I think what I need to do is create StarCount as a property like this:

[Code]...

I also want to execute my drawing code at design time, so I can see the stars while laying out a form. as a side note to that, I don't know how to change the size of the control at run or design time, nor how to disable the user from changing it at design time.as a side note - I know that there are a few star rate controls already floating around the internet, but I do not like the quality of them (or at least the one's I've seen), they felt very windows 98. I'm trying to make something that will fit well into windows 7 (plus I want to implement custom images, but that can wait until I get it working)

View 6 Replies

Wpf Custom User Control MouseleftButtonDown Capture Area?

May 23, 2012

I have a custom control with an event handler when you click on it. Everything works and the event get fired right.

AddHandler (cu.MouseLeftButtonDown), AddressOf Me.DoSomething

When the control resizes to show some extra information it expands. It also collapses when the user preses a button. This works alright. But now when I click where the expanded area used to be, it still fires mouse leftbuttondown on that control. I have tried to set IsHitTestVisible to false on the expanded element but it diden't work. Here's some xaml...

<UserControl x:Class="MyCustomControl">
<StackPanel>
<Grid>

[code]....

I cant use another element around my customcontrol since I also use this MouseLeftButtonDown on all different kind of controls.
I can't figure out how the boundaries on the cu.MouseLeftButtonDown event work to fix this.

View 1 Replies

Asp.net - Programmatically Change Custom Attributes Of User Control In Code Behind?

Jan 21, 2012

I have a User Control which is a customer input form.I'm working on a sales system, when generating a sale, the customer data is populated by a Javascript Auto Complete, but when loading a saved sale, I need to paste a User ID into the control programatically.

<controls:customerDataForm ID='customerForm1' partExchangeMenu="true" showBankDetails="false" customerID="****" runat='server' />

Renders my control on the page within the markup of the parent document (in this case it's called newSale.aspx)In the code behind in newSale.aspx.vb I need to be able to programmtically change the value of the Controls customerID attribute. I can't seem to do it.This is what I have done, following various Googling attempts, but it is always leaving the customerID as zero

Protected Sub Page_Init(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Init
customerForm1.customerID = "0" '// default Customer ID if no invoice number
If Request.QueryString("invno") <> "" Then

[code]....

View 1 Replies

Building Custom User Control - Default Property Of Class?

Jan 22, 2012

If we say blue is the default colour of the Backcolor property I understand it as if you don't specify a colour for Backcolor blue will be its colour. But I could not make sense of default property of a class in the context of building a custom user control. After calling an instance of a class we have to either call one of its members or assign an other object for it. Therefore why should there be a default property?

View 9 Replies

Create A User Control With A List Of Custom Class Type Property

Nov 29, 2011

Is it possible to create a user control with a list of custom class type property? If it is, how can I? The issue is that, in designer mode the property is not displayed in property window. I can add the list on markup but when i switch to the designer mode it gives an error which is 'The user control does not have a public property named BookList'.

View 1 Replies

Load A User Control In An Ajax WCF Service And Access Custom Properties?

Apr 4, 2011

I can load a generic user control just fine in my WCF service doing the following:

UserControl userControl= (UserControl) new Page().LoadControl("~/UserControls/MyControl.ascx");
However i can't seem to find any way to do this

[code].....

View 2 Replies

Asp.net - Set Master Page On Page Preinit Based On Custom User Control Method Result?

Apr 27, 2011

I have a user control that checks if a certain query string and session value are present then returns a boolean based on that, if it's true I want to set the master page. The page is throwing an Object reference exception when it tries to call the method EditUser1.UserAuthorization(). Why is this happening? I imagine that the method doesn't exist at that point in the stack. Protected Sub Page_PreInit(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreInit

[Code]...

View 1 Replies

Wpf - Object Reference Not Set To An Instance Of An Object When Using Custom User Control

Feb 10, 2012

I have created a custom user control (JCUserControl), and I am using it in the Main Window. And my Main Window has no codebehind. I have this in the JCUserControl codebehind:

Private Sub ImmediateRadioButton_Checked(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles ImmediateRadioButton.Checked
SomeTextBox.IsEnabled = False
End Sub

When I run it, it fails with the NullReferenceException. If I comment out the SomeTextBox.IsEnabled = false, it runs without any problems.

Edit: Found out that I could just check if the radio buttons are loaded before doing whatever I want to do.

Private Sub ImmediateRadioButton_Checked(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles ImmediateRadioButton.Checked
If ImmediateRadioButton.IsLoaded Then
SomeTextBox.IsEnabled = False
End If
End Sub

View 1 Replies

Specify A Custom Icon For Display In The Toolbox Window When Create Own Custom Control?

Dec 29, 2011

how to specify a custom icon for display in the toolbox window when you create your own custom control? Something other than the dreaded "gearbox" icon.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved