Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PixelGod

    URL redirection issue

    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.
  2. PixelGod

    URL redirection issue

    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...
  3. PixelGod

    How to Remove a Titlebar from a .Sizable Form

    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...
  4. PixelGod

    URL redirection issue

    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...
  5. PixelGod

    URL redirection issue

    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...
  6. PixelGod

    How to Remove a Titlebar from a .Sizable Form

    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...
  7. PixelGod

    How to Remove a Titlebar from a .Sizable Form

    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...
  8. PixelGod

    How to Remove a Titlebar from a .Sizable Form

    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...
  9. PixelGod

    How to Remove a Titlebar from a .Sizable Form

    Same result using FormBorderStyle.SizableToolWindow. I am running Visual Studio Community 2015 on Windows 10.
  10. PixelGod

    How to Remove a Titlebar from a .Sizable Form

    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?
  11. PixelGod

    How to Remove a Titlebar from a .Sizable Form

    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...
  12. PixelGod

    User Form on on project reads right to left

    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...
  13. PixelGod

    How to Remove a Titlebar from a .Sizable Form

    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...
  14. PixelGod

    How to Reference a Dynamically Created 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...
  15. PixelGod

    How to Reference a Dynamically Created Form

    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...
  16. PixelGod

    Embedding fonts into a VB.NET program.

    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...

Part and Inventory Search

Back
Top