Search results for query: *

  1. Kupoling-Katana

    Masked Textbox DLL?

    Thanks for the tip.
  2. Kupoling-Katana

    Masked Textbox DLL?

    Okay, I (as you can see) have .NET 1.1, which does not support Masked Textboxes. But I am working on a form with a Username and Password entry boxes, and (while I am encrypting the password) I don't think the user wants to just see their passwords out in the open. I have seen threads (time and...
  3. Kupoling-Katana

    Bad INSERT INTO statement

    There's an error in my code, saying something about some INSERT INTO statement. Here's my code, give me whatever you can find out Public Sub create_acc() Try Dim inc As Integer = 0 Dim maxrows As Integer Dim con As New OleDb.OleDbConnection...
  4. Kupoling-Katana

    Splash Page problems (again)

    Thanks, I appreciate the help.
  5. Kupoling-Katana

    Splash Page problems (again)

    Okay, I get what you're saying, but will I have to create a new Class and put Sub Main inside it, or is there a Sub Main that is already created?
  6. Kupoling-Katana

    Splash Page problems (again)

    Okay, I have a app in which there are two forms, and depending on the conditions, I might have one start up at one time, and another at another time. So, I made a splash page. The problem is that when the splash page goes to open the next form (and close the splash page), both forms close. I...
  7. Kupoling-Katana

    How to create help file

    Er, you don't have to convert your files to .png or .jpg (Well, maybe, if you're using .psd or some foreign file format). Another thing is that, if you're using a web site builder, then it may store the pictures in a seperate folder, and then reference that folder. Otherwise, if you're using...
  8. Kupoling-Katana

    How to create help file

    Yeah, what are you using anyway? Not to be mean, but usually individual filelist.xml files either mean that you're using a web page maker, or obsessive-compulsive. Anyway, check what's in the filelist.xml files and see if they're even necessary for the HTML file to run. What I mean, is, if the...
  9. Kupoling-Katana

    Help: Changing Tabs with Buttons

    Okay, I've been creating a Startup Wizard, and I read a piece of advice in another topic about making each page a tab, then just hiding the tabs. But now I don't know how to navigate to each tab with the Previous and Next buttons. I have an idea of it, but I just don't know what procedure to use...
  10. Kupoling-Katana

    How to create help file

    Are you locating them in a seperate directory? Because it will link to whatever.chm::graphic.jpg . I would just recommend putting your pics and your HTML files in the same directory, so you can just use <img src="graphic.jpg">. Also, in the Output log, it tells how many graphics have been...
  11. Kupoling-Katana

    Splash Page problems

    Okay, that worked, sort of, but it says that I have to use a Form.ShowDialog or an Application.RunDialog. However, since it's a splash page, I can't have it as Dialog, because that means that in order to run the app, the splash page has to be active. And I set the splash page's "TopMost"...
  12. Kupoling-Katana

    Splash Page problems

    Okay, for my application, I was working on a basic flow chart that would open the splash page, then read a text file to see if this is the first time the user has opened the application. However, I couldn't get the timer working (at all), so I decided to make it so that the user has to click the...
Back
Top