No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
14 Posted Topics
I'm having a heck of a time loading an image from the path where the program is being run. Dim image As New BitmapImage Dim imagePath As String = "keepass.png" image.BeginInit() image.UriSource = New Uri(imagePath, UriKind.Relative) image.EndInit() ProductImage.Source = image I can't seem to use a relative path to my … | |
Hey Folks I've created a template and storyboard that applies to all buttons in my application. When you click the button, it drops to the right and down a bit, then snaps back up. The problem is, when I handle the click in code, it executes before (or during?) the … | |
Hey folks I've finally figured out how in WPF to template all my buttons so they all behave they way I want. Basically, I want all my buttons, when clicked, to drop down and to the right a few pixels then pop back up. The problem is, I can't set … | |
Hey Folks! I'm using a windows hook to scroll horizontally through a listview. I have it aligned so it only adds items horizontally. I have 2 big buttons I'm using to scroll right and left with nice bitmaps on them... The problem is the listbox has scrollbars appear when I … | |
Re: You'll first need to fire an event when a textbox reaches a certain length. You would want to make a sub that Handles MyTextBox.OnTextChanged and checks how many characters are in the textbox. Then inside that sub, if the number of characters have been reached, you'll enable the timer. Timer1.Enabled … | |
Hey folks I'm using a listview to show an array of images that get taken from a webcam. I want them ordered on the bottom of the screen and be selectable for saving, so I'm using a listbox. Everything works okay, but when I add items to the listbox and … | |
Re: I would move alot of the VB code over and just create a web page that does the same work. Most of the code-behind will be identical, you will just need to re-create the controls on the web page, depending on what kind of controls your app uses. I wouldn't … | |
Hello Daniweb! I'm an amateur programmer who's learned quite a bit from online references, and usually searching eventually reveals the problem but I'm stuck! I've overcome many obstacles when creating a custom button on the Ajax Editor control, namespace issues, registring the controls properly etc. I resist the temptation to … | |
Re: Not really an ASP.NET problem, but my first troubleshooting step would be to do a ping machinename -t on it and wait for it to fail again. If ICMP requests stop around the same time as the web server, you know that it's not ISS itself but some kind of … | |
Re: There's really not enough code to know what's going on here. Is this for an ASP website? Also, have you put a breakpoint in to see if the code is executing? You might need to do "autopostback" on the button you're using to execute this code. It might be working, … | |
Re: Really difficult to figure out what's being asked here, but I believe you're trying to exit the sub at a particular point. Use "return" to exit the sub without executing any more code. | |
Re: Hello Stereoworld Have you tried enabling "AutoPostBack = True" on the images? | |
Re: Hey Very Good Guy Drag and drop an image and a radio button onto your page Double click the radio button. Add this code (which you have probably already figured out) Image1.BorderColor = Color.Red Image1.BorderWidth = 2 Then, you will need to change the radio buttons attribute "autopostback" to "true" … | |
Hello Daniweb! I'm an amateur programmer who's learned quite a bit from online references, and usually searching eventually reveals the problem but I'm stuck! I've overcome many obstacles when creating a custom button on the Ajax Editor control, namespace issues, registring the controls properly etc. I resist the temptation to … |
The End.