Focus On A Certain Region?
Jul 4, 2009How can I make it so that if the cursor position is anywhere from 200 to 500, it'll make "Region" = true?
View 3 RepliesHow can I make it so that if the cursor position is anywhere from 200 to 500, it'll make "Region" = true?
View 3 RepliesTo refresh or invalidate only a region of the form.sometimes I will need refresh all the form, but in some situations only specific regions of the form..I saw some samples on the Microsft site, but I don't understood.I use VB .net 2008
View 3 RepliesIs there a more efficient/easier way changing the backcolor of a control when it has focus and lost focus? Let's say I've got 10 text boxes. Right now I would have 20 different events...10 for Enter event and 10 for Leave event. Of course, entering would change the back color to "green" and leaving would change it back to "white".
[Code]....
Here is what I've done:1) Created an Excel COM add-in for Excel 20032) Added a NotifyIcon to the Windows taskbar notification area (aka system tray) during ThisAddIn_Startup3) Added a ContextMenuStrip with a ToolStripButton to the NotifyIconWhy is it when I right click on the NotifyIcon, Excel gains focus? If after clicking on the NotifyIcon to display the ContextMenuStrip I choose not select an option on the ContextMenuStrip and instead click back on the Excel window, I get a weird flashing cell in Excel.I've created a video of the problem to help you see what I [url] anyone know how to prevent this? Ideally, I'd like to be able to click back on Excel and only have the ContextMenuStrip close and Excel regain focus.
View 1 RepliesI have two forms in an application. One is he background and then I show another keypad form called with the show() method (not showDialog) because I need to perform some validations on btn click.
The kepad has 10 buttons and an Enter Button. The problem is that the form keeps loosing focus (I checked this with a messagebox which keeps poping up once for focus=true and again for focus=false, it continuously keeps losing and gaining focus) so it does not process any keypress events untill i click somewhere on the form. I tried using me.focus() in form load event but to no avail. The forms TopMost property is also set to true.
I have a custom-shaped form created by setting the Region to an image. I want to be able to highlight the edge of the form when it has focus. To do this I believe I need to get the outline of the form and convert it to a path so I can draw a two-pixel highlightaround the edge of the form.
View 6 Replieshow to use the region class?
View 7 Repliesrecommend a book that focuses on the .NET framework in general and isn't too language specific.
View 3 RepliesI have a textbox on a form that when it loses focus it updates other text boxes on the form. But before it updates the other textboxes I check the input value in the textbox lostfocus event if it is undesired I return focus to the the textbox and alert the the user with a msgbox. However where my problem is, is that when the cancel button is clicked I don't care what the input in the textbox is because the changes are being canceled but if the value is undesired the it keeps returning focus to the textbox instead of canceling the changes. Is there a way to see what control was clicked on before or in the lost focus event? Can't seem to figure it out tried enter and leave events but no luck!
So for example something like this...
Code:
Private Sub TextBox1_LostFocus(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.LostFocus
If Control that was clicked <> btnCancel then
[Code].....
c# - Is there #Region code for HTML
View 3 RepliesI generally use to organize codes below lines;
#Region "Comments.."
#End Region
But when I want to use it in the Function, it gives error ("..are not valid within..."). Are there any keyword to make this in the Function or there aren't? [Code]
I generally use to organize codes below lines;#Region "Comments.."#End RegionBut when I want to use it in the Function, it gives error ("..are not valid within...").
View 2 RepliesFollowing my test project for making a map editor, I finally got the tile selection part covered.The application can already tell which tile(s) is selected.
So now we will work on "click the map and the tiles will be drawn" part.
When the user clicks the map, I need to "copy" a selected tiles in the tile selector, and "paste" them on the map. The process is a bit longer actually.Or is there a way to directly copy the selected tiles to the map image?
I have a custom-shaped form created by setting the Region to an image. I want to be able to highlight the edge of the form when it has focus. To do this I believe I need to get the outline of the form and convert it to a path so I can draw a two-pixel highlight around the edge of the form.
(1) Is this the correct approach?
(2) If so, how do I get the outline of the region so I can call DrawPath?
how can i get the points which make a polygon from a region which was derived from the polygon's points?
View 2 Repliesi have an image which has 2 colors, black and white.
i wish to get a region object that has all the white areas 'selected'
the shape is not just a polygon, its fairly shapeless
is this the best approach: create a region that is the size of the image and run a loop checking each individual pixel to see if its black, if it is then exclude it from the region. (i've got a feeling this will take very long to load)
I am using something like[code]...
however the above will clip the drawing to a 100x100 ellipse ...
my question is how can i reverse the clip so that it paints everywhere except in the ellipse?
What are the true advantages of using #Region?
View 6 RepliesImagine you want to draw a regular shape such as a triangle, rectangle ... all the way up to say a 10 sided figure ( a decagon ) or more. I know that when we try lots of sides it looks closer and closer to a circle or an ellipse. The problem I am thinking of is placing smaller circles ( or ellipses ) at the correct positions near the points of that shape as shown for a triangle below.Here comes the question(s) How could we: a) Correctly place the circles ( or ellipses ) at the points so that the sides are at a tangent to them andb) Can we combine the REGIONs of these to produce a figure with rounded points so the light blue bits get excluded? I guess that to produce a method to deal with all the mathematics involved would be quite a complex task.Has anyway previously tackled doing this or know of any .Net tools I could use for this problem?
View 11 RepliesI built an application that runs alright on Windows 7 and and XP but when I tried that on my home computer (Vista Home Premium),at very start, it says Can not open shared memory region and then it quits.
View 5 RepliesI work with a developer that loves to put #region #endregion is his methods, and I hate it.It makes the method so hard to read. I have looked for best practices on how to properly using the #regions but I have not found anything
View 1 RepliesI have created graphics in a picturebox. I know how to save these graphics to a file, but my problem is how to save PART of the already drawn image to a file. That is How can I save a region of a drawn graphics to a file (not the whole drawn image)?
View 6 RepliesI have a Rectangle (the class) that I'm using to define a region on a form and when the mouse enters that region it shows 2 buttons (which are on the form and within the bounds of the rectangle) and I would like the buttons to remain visible when the mouse is over either of the 2 buttons then when the mouse leaves the region or leaves the form they are set to invisible again. Here's the code I have so far:
[code]....
The problem is when the mouse enters the bounds of the button, the form's MouseLeave event fires and thus my buttons are hidden which means the user can't click either of them either.
I don't know if this is possible, but I want my form to be 'window-blocking', just like the taskbar, when a window is maximized, it won't overlap the form.
View 4 RepliesI'm making a program to detect polygon intersections, and it's all set up. I just need to know... how do you determine whether a region is of size zero?
View 2 RepliesI'm looking for a code/algorithm that will help me to draw border around different color regions inside a bitmap.I have a bitmap like the "before" image.I want to add border around the colored regions like the "after" image.
VS Version: 2005-2010 (Doesn't matter)
Language: VB.Net / C# / C++ (Doesn't matter as long as it can be called from a managed exe)
I have set a custom format for DTP control to dd/MM/yy. lets consider a real time scenerio. I have a form to enter Invoices for that i have following controls on my form 1] DateTimePicker, 2] CustomerName ComboBox, 3] Quantity, 4] Amount o.k. the Custom Format for DTP is set to 'dd/MM/yy'. When i first add entry i set the focus to DTP Control After changing date user moves focus to ComboBox then Quantity then Amount & Finally Clicks Save Button. And again hits Add Button and the cycle continues.
Now when user changes 'month'in DTP & go ahead and save the entry when he add another new entry the focus is on DTP however in the month region of DTP where it is expected in 'Date' region of DTP b'cas it is not likely that user will change month every time but he may change Date every time. This enforces user to mannualy select the desired region (either by Left Arrow Key or by Clicking Mouse button in the desired region). So after receiving focus i want the cursor tobe in the 'Date' region of DTP. Kindly help me writting correct statement to set focus to the control in the desired region (section) in DTP control.
how can i design a region in vb.net form(windows application), such that when i click any point inside a region a new page opens. my problem is that the region which i want to define through it is very complex. its a combination of a rectangle and another shape.
View 6 Replieshow can i draw a free-shape (it means no particular shape or sides) and fill it in with the colors chosen from colordialog?
e.g. im gonna draw a rounded rectangle and i want to fill its insides with color red.
I've made some function that generates an email template. Code it generates is pure HTML with CSS. Problem is compiler does this odd error and highlights each time '#' sign appears which is needed to define colors in CSS. I did try to change '#' to '/pound/' and then string.Replace() on RETURN but no luck. I'm more into C# so there i can escape special characters by using '' before them but something f$#$ed up there... Once i remove '#' all back to normal and compiles well.
View 2 Replies