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 Mike Lewis 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. mookie0001

    Simple VB.NET control question

    I found the solution to my problem. In case anyone is interested: Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim f2 As New Form2() f2.Create(Me) End Sub End Class Public Class Form2...
  2. mookie0001

    Simple VB.NET control question

    This isn't my actual code, I just posted psuedo code so that you could get the basic idea of what is going on...
  3. mookie0001

    Simple VB.NET control question

    No, here is a sample from the code I am using: Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim form2 As New Form2() form2.Show() End Sub End Class Public Class Form2 Private Sub...
  4. mookie0001

    Simple VB.NET control question

    Hi everyone, I know that there is probably a very easy way to do this, but I have yet to figure it out. Here is the basic scenario: Form1 contains Label1 Form1 creates an instance of Form2 Form2 contains Button1 Form2.Button1.onClick needs to set Form1.Label1.Text = "something&quot...
  5. mookie0001

    bitblt flickering problem

    Hi everyone, I am trying to smoothly scroll a VERY large image across a form. Unfortunately, I am getting very bad flickering problems. One helpful person recommended that I blit only the screen size instead of the entire picture. Unfortunately, I followed a tutorial to get this far and do...
  6. mookie0001

    Bitmap scaling problem

    Hi everyone, I am having a strange problem when drawing a bitmap to a picturebox. For some reason, when the bitmap is drawn - it is scaled larger than it's actual size. For example, if the screen resolution is set to 1024x768 and the image size is the same - the image will be rendered larger...
  7. mookie0001

    switch / case problem

    I tried your suggested changes with no success. Any other ideas? ...this is driving me insane, I know it must be something simple...
  8. mookie0001

    switch / case problem

    Hello, I am having problems with a switch/case function. For some reason the function always returns only the default value. Yet, curiously, if I was to do an IF(Request.QueryString("page")=="home") type statement in place of the switch, the IF statement functions...
  9. mookie0001

    Very basic ListBox Question

    This was exactly what I needed. Thanks! -Chris
  10. mookie0001

    Very basic ListBox Question

    I know there is probably a very simple solution to this, but I am relatively inexperienced in VB so bear with me... I am looking to list all of the folders (not any files) at a given location in a list box. I do not want to use any type of built-in directory controls because I wish to restrict...
  11. mookie0001

    Hiding file extensions in a FileListBox

    File1.Pattern = "*.txt;*.doc" produces only the .doc files being populated into the box. For whatever reason it seems to ignore everything except the last filter option. Chtrips - that's what I was afraid of. I was just hoping that there was an easier way. Thanks though. Any...
  12. mookie0001

    Hiding file extensions in a FileListBox

    Hi, 1. I currently have a FileListBox setup to show only one file type using the Pattern option in VB 6. Because all files are of the same type, I would like to hide the file extensions for user friendliness. Is there a simple fix to do this? If not, what are my best options to do this? 2...
  13. mookie0001

    Form submit function not working

    Found a solution. There was a second form with the same name that I hadn't noticed which was causing problems. Thanks for all of your help!
  14. mookie0001

    Form submit function not working

    To clarify that code, the extra quotes are from the ASP, the client-side change looks like this: onchange="javascript:this.form.submit();"
  15. mookie0001

    Form submit function not working

    Is there some other way I can go about this confirmation? Using this [onchange=""javascript:this.form.submit();"">"] instead causes the form to submit just as I need, but without the confirmation. Is there anyway to have two onchange actions (a confirm and then a...
  16. mookie0001

    Form submit function not working

    I've tried both of your suggestion of using only an id and then only the name, as well as removing the document.Search.SUser.focus(). Still I receive the same error. Another note, the script is being reached, however after the user confirms the error occurs. And onpnt, you are correct about...
  17. mookie0001

    Form submit function not working

    No luck with the quotes. Here is my exact code (the relevant stuff at least): <script language=&quot;javascript&quot;> //-----Display Warning Before Deleting Inventory Record----- function DeleteWarning() { var answer = confirm(&quot;This action will completely remove any reference of this...
  18. mookie0001

    Form submit function not working

    The browser is the newest IE. The error I recieve is &quot;Object doesn't support this property or method&quot;.
  19. mookie0001

    Form submit function not working

    This function is failing to submit the form after the confirmation is accepted. If anyone can point me in the right direction I would greatly appreciate it. Here is the called JavaScript function: function confirmEquipAdd() { var cnfrm = confirm(&quot;Are you sure you wish to associate this...
  20. mookie0001

    Excel Macro to find and delete duplicate records and their originals

    I forgot to mention that the version of excel is 2000.

Part and Inventory Search

Back
Top