Search results for query: *

  1. formlesstree4

    decrypt a MD ?

    There is no way to decrypt a hash. You can match them, but you can't reverse a hash.
  2. formlesstree4

    Question Maths mystery

    What if I put "AB" in that TextBox? Your program would crash in an instant.
  3. formlesstree4

    Get CrC values of all process

    Can you think of any application where this would be necessary..? I mean, props for doing it, but what's the point?
  4. formlesstree4

    Database Driven Login form with Admin backend (Image Heavy)

    The names as shown are from the previous controls you created. You can make your own 'names' for them.
  5. formlesstree4

    Question Replace IRC Text

    Use a RTB control, and on text change, to a detect for w/e you want, then replace it with the smiley.
  6. formlesstree4

    Question REGDB_E_CLASSNOTREG Error - Help needed!

    Well according to your dump here, the AxInterop.MSFlexGridLib is in fact loaded. You sure the target computer has the right version of the framework?
  7. formlesstree4

    Question Playable audio without WMP

    You could look into using DirectX sound playing capabilities. Look here
  8. formlesstree4

    Question Playable audio without WMP

    Wait, you want to use the WMP API's, but not the WMP control?
  9. formlesstree4

    Question projects can be used in a Network?

    You can use vb.net for sending out updates. A simple way to do it is to use ClickOnce.
  10. formlesstree4

    how secure is web browser created in VB 2008

    The WebBrowser Control is basically Internet Explorer.
  11. formlesstree4

    How to add up total point using checkboxes?

    Ok. Simple: Parameterized Query. Make your MySQL table have...33 Boolean Columns. The query will rely on your CheckBox.checked for inserting either true or false values (1 or 0). Add another column for other information such as Name, Date, Age, etc so you can identify the patient.
  12. formlesstree4

    Answered Program Leave?

    Yes. VB.net would only pay attention to the form that actually lost focus. When the form loses focus, you can have the program call the pausing function/sub. When the form regains focus, have it resume. It doesn't matter if you have 100 forms from the same program open, the code is form specific.
  13. formlesstree4

    Question Program standard font

    That's the problem apparently, it doesn't look professional. What exactly defines an application as professional looking? I have to design my applications with bigger buttons because my PC settings have larger text by default, and it still looks 'professional'. It's all a matter of opinion. I...
  14. formlesstree4

    progressbar while loading data from database

    You need to look into Background Workers.
  15. formlesstree4

    Question "An error occurred creating the form" Exception

    We kinda need the code from the form. We aren't mind readers as to why it would be causing the error with no code -.-
  16. formlesstree4

    How to add up total point using checkboxes?

    Say for instance, your first check box is named: E_4 E for the section, 4 for the value of points. Do a check when the checkbox is checked, to add or subtract points from a global variable: totalScore. Example: Public Class Form1 Dim totalValue As Integer 'Declare my main variable...
  17. formlesstree4

    Database Driven Login form with Admin backend (Image Heavy)

    I'll get a screenshot soon, it will take me a bit, as I'm busy at the moment. But you'll need the image to understand what I was saying.
  18. formlesstree4

    Database Driven Login form with Admin backend (Image Heavy)

    This is just a tutorial, I leave it up to the programmer using the HowTo to parameterize his/her queries themselves. I'm sorry they aren't there, ImageShack must have deleted them. I don't have the original images anymore, but I can attempt to format it the same way I did.
  19. formlesstree4

    VB help with implementing a class in form code!!

    Your Inventory form is broken. As for your Production form, I'd recommend using a listbox and using a select case statement.
Back
Top