Selected Button Highlighting Rectangle Removal?
Apr 29, 2012How do I defocus a button after it has been clicked? Is there a something similar to "Button1.Defocus()" or "Button1.Focused = Fal
View 2 RepliesHow do I defocus a button after it has been clicked? Is there a something similar to "Button1.Defocus()" or "Button1.Focused = Fal
View 2 RepliesI am currently using VB. I want to do a Calendar Control which have dates highlighted/selected. All these dates are retrieved from a database.
how to put all the dates into an array Second thing I need to know is how to highlight all the dates in the array.
I have done some research on the internet and they said something about selectedDates and selectedDates collection and dayrender. But frankly speaking, I can't really find any VB codes regarding this. Dates format will be in dd/MM/yyyy
Imports System.Data.SqlClient
Partial Class _Default
Inherits System.Web.UI.Page
[Code]....
how can I draw a rectangle around the listbox's selected item? Something like the default windows focus rectangle.
I know I have to draw a custom ListBox, I have already done everything but this... This is what I'm trying, but it doesn't work
vb.net
If ColoredListBox.SelectedItem <> Nothing Then
Dim pos As Point = Me.PointToClient(Control.MousePosition)
e.Graphics.DrawRectangle(Pens.Red, pos.X, pos.Y, 259, 12)
End If
Is it possible to get the bounds of the selected item?
i'm trying to create a flat tabcontrol with a rounded rectangle tab for the selected tab + no border for inactive tabs?basically i'm trying to recreate that ribbon control in a very simplified form as a usercontrol.
View 5 RepliesWhen a button is focused by pressing Tab key, a rectangle appears on it. Even if the button's TabStop property is set to false, when the button is clicked with mouse the rectangle appears. Is it possible to stop the rectangle from appearing?
View 4 RepliesI have a form in which I draw a rectangle and a line depending on the button click. I basically want a dynamic line/ rectangle that moves when the mouse is clicked on another point on the picturebox. I found some code online for a rectangle, and I'm trying to extend it to draw a line too, but i'm having some issues. The line is not displayed when the mouse is lifted(mouse up event).
Here's my code:
Public Class Form1
Dim selection As Rectangle = Nothing
Dim m_Drawing As Boolean = False
Dim m_Start As Point
Dim square_click As Boolean = False
[Code] ......
When a button is focused by pressing Tab key, a rectangle appears on it. Even if the button's TabStop property is set to false, when the button is clicked with mouse the rectangle appears. Is it possible to stop the rectangle from appearing?
View 1 RepliesI have a form that uses a button to draw a line and a second button to draw a rectangle. I have a third button to clear the form but can't find a code example to code the Clear button.
View 4 Repliesi have a text box data is moved from there into a list box with the click of a button, i want the text in the box to dissapear when the button is pressed and the cursor to stay in the text box. This has to be possible as i have used this kind of thing on website forms.
View 3 Repliesi've got a little problem with List(on T) variables.
[code]...
It works perfectly fine. Does anyone know what the problem is?
When a button is focused by pressing Tab key, a rectangle appears on it. Even if the button's TabStop property is set to false, when the button is clicked with mouse the rectangle appears. Is it possible to
stop the rectangle from appearing?
Given a rectangle of width w and height h. and a coordinate x,y in that rectangle I would like to identify which triangle I am within.
i.e. the function should take parameters(x,y) and return a,b,c,d or a zero based number representing that triangle index i.e. (0=A,1=B,2=C,3=D) if they are in that order.
I think this would be something like >= the formula of the red line and >= the formula of the green line?
I'd like to implement this in VB.NET
This code is to draw rectangle. How can I draw rectangle divided to four rectangle or more
e.Graphics.DrawRectangle(Pens.Coral, 50, 200, 30, 40)
I'M creating a kind of photo viewer, and I cannot figure out how to orient the scroll buttons with the photos I want to draw because they all are different sizes.This is really hard to explain so please ask questions if you don't understand.I'M thinking if i could draw every photo on a single rectangle and then the scroll bars will position that rectangle up or down. but is there a way to make a rectangle inside another one so it only shows inside that rectangle?
View 10 RepliesI have a spreadsheet with this code:
'insert link
sheet1.Hyperlinks.Add(sheet1.Range("P1"), "http://http://www.vbforums.com", "")
the code of the button (ribbon)
[CODE]...
When I press the button, it connects to the web site. when the sheet1 is selected, it works, but when the sheet2 is selected, not works, why? the path is sheet1,What's wrong?
Data comes into the project from various sources and sometimes I am seeing what looks like a tab character
in front of the actual data. Now I thought this would work, covering all eventualities. but I get
'Conversion from string "Z" to type 'Double' is not valid.'
check is declared as a string. If Microsoft.VisualBasic.Left(check, 1) < Asc(32) Then
[Code]...
I'm looking to remove certain elements from a HTTPWebRequest I have attached the elements I need to remove in an image (elements are coloured red):
I've tried:
System.Net.ServicePointManager.Expect100Continue = False
for one of the elements but to no avail I've also tried:
webRequest.Headers.Remove(HttpRequestHeader.Connection)
here is my code:
Dim content As blah.Content = New blah.Content
Dim inputguid As String = Guid.NewGuid.ToString
Dim service As blah.WebService = New blah.WebService
[Code]...
Why is it that this VB.NET code only works for detecting flash disks?
Select Case m.WParam
Case WM_DEVICECHANGE_WPPARAMS.DBT_DEVICEARRIVAL
MsgBox("USB Inserted")[code].....
What would be the possible way to detect the insertion and removal of other USB peripherals, such as mouse and keyboard?
I am having problem with my FYP that my application is based on the detection of Insertion and Removal of a device. I am aware that this would happen using Win32_VolumeChangeEvent class or WMI. (Please notify me if I am wrong). Kindly solve this problem and send the code for Console Application in VB.NET. Please do not send code in any script language or C#. Also to get the device information.
View 6 Repliesscardgetstatuschange DOES wait(timeout is set INFINITE by -1) for card-insertion after connecting the reader-device to the pc. After a card is being insterted the first time and removed again, it won't wait any longer and returns immediately everytime;
lResult = SCardGetStatusChange(DethContext, -1, rgReaderState(0), 1)
So, scardgetstatuschange CAN work. But why only when i re-attach the cardreader-device to the pc????
removal of items in a collection or list using the " For Each " statement to iterate through.This code works:
For Each item As ListViewItem In ListView1.SelectedItems
ListView1.Items.Remove(item)
Next
This code does not:
For Each itemChecked As Object In CheckedListBox1.CheckedItems
CheckedListBox1.Items.Remove(itemChecked)
Next
I have been reading on this for hours today to find out why the first code block works, but the second does not.What I've learned is the "For Each" statement implements the IEnumerable interface. I have seen these terms used many times and scratched my head when it didn't make scense, then just moved along, something to strain my brain about later.Today was later...So since the IEnumerable interface is used, the .GetEnumerator method of the IEnumerable interface is called upon at the beginning of the "For Each" block, this evaluates the collection or list as in: For Each item As ListViewItem In myCollection This is done at the beginning of the iteration through the myCollection, so if the myCollection is altered as in:
For Each itemChecked As Object In myCollection
CheckedListBox1.Items.Remove(itemChecked)
Next
The altering of the list returns the error:List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change.
[code].....
I had this little image file that i was working out for using in my program but after deleting the reference to it in the my project>resources tab and its gone from the saved folder and solution window, but...
it know has errors about it still having a link to that file but its now missing
I am trying to write an application which will have different functions depending on someone's security level, but my bosses have ruled out holding a users name and password information in a database due to risk of the database being hacked.So I have decided to use USB flash drives, which will have encrypted datafiles on them, and each staff member will be given one with their details pre-programmed onto them.However I am now stuck with detecting whether the device is present or not, I have thought I can continually scan the available drives and have each flash drive with a set volume label and when it arrives act upon it, but I don't want to keep continually scanning the drives, there has to be a better way than this, .
View 7 RepliesI am attempting to detect addition/removal of volume media in a Visual Studio 2005 project. I can get this to work using the WndProc message WM_DEVICECHANGE on all types of volumes except SDHC (Secure Digital High Capicity) cards. Is there another Windows Message I have to listen for? If so, what is it, and what else do I have to do?
Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
Dim str As String
Dim devtype As Int32
[Code].....
I am creating a program in which there is a listview control with many items contained in it. It also has checkboxes for each of them. I am trying to get it so that when you check the checkbox next to an item, it removes the item from the list. I am using this code:
Private Sub ListView1_ItemCheck(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ItemCheckEventArgs) Handles ListView1.ItemCheck
ListView1.Items.RemoveAt(e.Index)
End Sub
When I run this however, and check an item, it gives me this error (I am checking the first item in the listview, which would mean the index is 0): InvalidArgument=Value of '0' is not valid for 'index'. Parameter name: index
I've have been testing this code out for both the listview events ItemCheck and ItemChecked. How is 0 out of the index range? Wouldn't it be the first item in the listview, in which case it should remove the item.
I am working on a parental control system for my webbrowser (checks if navigated page is on the blacklist). So I was looking for a list of sites to add to the system as default, I didn't find any but my friend did, but the problem is he gave me a list, for example, with lots of lines like this:
http:somename:something@website.com
http:somename1:something1@website2.com
How can I remove everything from the "@" till the "http;" (including http) and remove it all so only the website name stays? I could do it by hand/notepad, but it would take forever as the list has over 2k sites I would like to add in my blacklist! I thought maybe strings could do it?
I am using a Rich TextBox in VB.NET and passing to a StringBuilder. I need to replace the New Line character from the TextBox with either a space or a comma. Problem is the standard codes for new line don't seem to be picking up this New Line character in this case. Is there a specific character used in Rich TextBoxes as the New Line?
View 5 RepliesWhy is it that this VB.Net code only works for detecting flash disks? [code] What would be the possible way to detect the insertion and removal of other USB Peripherals such as mouse and keyboard?
View 1 RepliesI have form which is having 3 buttons . vb.net08 I want to know which button is clicked ?? B`se i have treeview control .If i expand the treeview control based on the button selection i want to show the values on the Datagridview.
View 3 RepliesI have inherited some very old ASP.Net code. Written initially in 1.0 and then converted to 2.0 There is a page which uses a custom pager control. That control has the following logic in it:
Private _DataSource As PagedDataSource
Public Property DataSource() As PagedDataSource
Get
[code]....
The task at hand was to remove all session variables. What would be the best way to represent this data without the use of session. Originally i was told to put all session items into a cookie, while this worked for most of the items it will not work for this due to the cookie size limitation, Im also not to keen on the idea of keeping it in ViewState or even if that is an option. Im very new to VB and dont have much expierence re-writting legacy code. Session is not an option because this is being moved into a web-farm and Sticky sessions are turned off so it must work without session.