Great news! Make sure you follow-up with what fixed your issue so if anyone else stumbles across this forum looking-up the same issue they can get pointed in the right direction for the fix.
Everton1Blue,
I would assume that you put it in your contact.aspx.vb file after the Redirect code in this format:
Response.Redirect(String.Format("~/thankyou.aspx?your_name={0}", yourname), True)
HttpResponse.BufferOutput = True
With any luck it will dump any information regarding what the...
Well, I was able to produce the effect that I wanted, but the code seems to make for a very sluggish windowed interface and the click & drag subroutine that I created is now very jerky across the screen. May be due to a slower redraw rate due to whatever the new code is doing to slow things...
Everton1Blue,
From what I gather, Response.Redirect will result in an HTTP error if headers have already been sent. Does HttpResponse.BufferOutput return anything of value that may help you pinpoint where the error is occurring? Sorry if I am approaching this due to my vague understanding of...
Everton,
What is your redirection code so we can help troubleshoot? Response 301 can certainly stem from a redirection issue. Also, is this VB-related? I deal with a lot of PHP and SQL information, so I am assuming that header redirection is how you are processing this? I am not terribly...
Let me know what you find out! I know that I was able to establish a drag-and-drop protocol without low level hub-bub, but this WndProc stuff has me stumped. I was able to successfully utilize it to resize forms set to FormBorderStyle.None and FormBorderStyle.FixedToolWindow, but I cannot seem...
I appreciate all of the help. You guys have been absolutely splendid during this whole process. I attempted to simply set the FormBorderStyle to FormBorderStyle.FixedToolWindow and then handling mouse events to still make it sizable, but the program keeps throwing error codes and crashing.
I...
Well, your question inspired a functional investigation. I went ahead and compiled my current program and transferred it to a USB. I ran the program on my Windows 7 machine, and viola(!), the white space was gone!
So... now it appears that we have an API issue with Windows 10 when applying this...
softhemc,
No, it's not really possible. The custom titlebar is currently set to TitleBar.Top = 0, unless there is some other method I could use. If this portion of the form was actually part of the client, though, wouldn't it be filled with the form background color?
softhemc, again I appreciate all of the great help!
However, I am slightly unclear as to what you mean by "lower the position of your titlebar." Are you referencing the form-generated titlebar, or the custom designed one?
If it is the first option, I was not aware that we could manually...
softhemc is correct.
There is a RightToLeft and RightToLeftLayout property.
The RightToLeft property aligns items you select from the right side first.
The RightToLeftLayout property (when enabled) forces all items to comply with the RightToLeft property.
SOURCE: Link
If you are using the...
As some may already know, I am relatively new to the VB.net scene and I am learning as I go. With any luck, you guys can help me (yet again)! Everyone has been extremely helpful and patient with me so far. Let's see if you can assist with me with my latest conundrum:
I have created a new form...
I just checked on this post to see what you guys have suggested, and I MUST thank you for the support. However, since my original post I did discover a work-around procedure.
In order to reference one of my dynamically-created form (this one named "MainWindow"), I used the following code:
Dim...
Hello, having a bit of a problem with referencing dynamically-created forms in my project.
I have a function that will generate a new form when executed. After said form is created, how then do I access it programmatically to add new controls?
For sanity's sake, let's say that I have created a...
Hello,
This is my first post, so, sorry for any errors on my part!
I have a custom font which I have included in my program. I want to incorporate this into the software without needing to install it on any users' systems. I utilized FAQ article FAQ796-4747, but I seem to have issues executing...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.