Search results for query: *

  • Users: thugster69
  • Content: Threads
  • Order by date
  1. thugster69

    Regex strategies for htm tags - Getting strings inside html source code

    Hi Folks, First of all, I would like to say that finally, I'm back to this wonderful site! I've taken a break from programming since my work doesn't require it. For my query, what I'm trying to do is get a string from a group of html tags. I've successfully coded my initial logic for "IM...
  2. thugster69

    Installation problems with Crystal Report

    Hey guys! Good day to you all! I just need some help regarding my problem on deploying applications to workstations that uses crystal reports as its functionality. My Platform is Visual Basic 2010 with .NET 4.0 Framework combined with MySQL Database. Here are the problems: 1. When the user...
  3. thugster69

    Web Browser Based application?

    Hey guys, I'm developing a VB.net application that utilizes mysql as its database storage. I'm wondering if its possible to convert or compile my application into a web browser application accessible through networks? Any comments will be much appreciated! Thanks guys! :D
  4. thugster69

    Printing multiple categories in its own CrystalReport Row?

    Hey Guys! I'm faced with a dilemma of making a crystal report document that will print this layout: President: Name: Vote Count John Doe.......................8 Jane Doe.......................7 Vice-President: Name: Vote Count Candidate...
  5. thugster69

    How can I split a string with qoutes, doubleqoutes and other metacharacters in REGEX?

    Hey guys, For two days, already, I've been bugged by my problem. I'm trying to split a string of text i.e.( "Lakeside".) and store it like this: myArray(0) = " myArray(1) = L myArray(2) = a myArray(3) = k myArray(4) = e myArray(5) = s myArray(0) = i myArray(0) = d myArray(0) = e myArray(0) = "...
  6. thugster69

    Question How can I join 3 tables using SQL?

    Hey Guys, Good day! I just want to learn how to join 3 tables in my SQL Database? Here is the structure: Table Name: Section1 Fields: Student Number Table Name: New Student Fields: Student Number Last Name First Name...
  7. thugster69

    Red X in the Crystal Report Toolbar

    I recently installed Crystal Report for Visual Studio 2010 Beta on my computer.. The reports are executing fine but the standard toolbar of the Crystal Report Application contains a big red X on top.. BTW, I'm developing my application using VB 2010.. Any help or comment will be appreciated!!
  8. thugster69

    Putting Textbox Validation in a function

    Is there any possibility that I can put this large chunk of code to a function so that I can call and verify the input without having to repeat the code for every textbox.keyPress event. Here it is: Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As...
  9. thugster69

    Preventing SQL Injection by cancelling KeyPress events

    Hey guys, I recently discovered that my SQL statement is prone to simple SQL injections like typing " ';" or " ' " without quotations.. My first remedy for this was to include a REGEX.replace statement to the code: Dim strUsernameRegex As String = Regex.Replace(txtUsername.Text, "[^0-9a-zA-Z...
  10. thugster69

    decrypt a MD ?

    Thanks for the encryption-part! But I'm wondering, is there anyway to decrypt a MD5 Encrpytion?
  11. thugster69

    Typing Tutor Help...?

    Hey guys! I'm planning to create a Typing Tutor application which will provide texts that should be imitated by a user and then scored through its WPM.. I wonder how will I compare the values entered by the user to a defined text pattern? Thanks in advance!
  12. thugster69

    Question Hardcoded Dataset, tableBindingSource and everything in between

    Hey guys, Im new to VB.net programming and I was wondering on how can I hardcode all of this components. What I'm trying to accomplish is that I want to create my own Binding Navigation along with other components hardcoded so that I can navigate through the DatagridView with my own buttons...
Back
Top