Search found 1811 matches

Search found 1811 matches Page 6 of 182
by Cheatmasterbw
Thu May 10, 2012 9:31 pm
Forum: General Help
Topic: TOSHIBA HDD Recovery Failed
Replies: 12
Views: 3602

If the program you are using now doesn't work, you can try this, it is what I used when my hard drive crashed:
http://www.easeus.com/datarecoverywizar ... ftware.htm
by Cheatmasterbw
Thu May 10, 2012 9:25 pm
Forum: General coding help
Topic: Loop through each element in an array VB/C#
Replies: 3
Views: 2379

I don't know if there is a way to use a For Each loop with multidimensional array, but you can use loops within loops:
Code: Select all
        Dim arr(10, 10) As String
        For a = 0 To arr.GetLength(0) - 1
            For b = 0 To arr.GetLength(1) - 1

            Next
        Next
by Cheatmasterbw
Mon May 07, 2012 1:46 am
Forum: Coding Help & Support
Topic: Detect Image Size in 2 TextBox's
Replies: 2
Views: 793

You can do this to put the image into a variable:
Code: Select all
Dim bm as new bitmap("Image File Name Here")
Then you can use these to get the dimensions:
Code: Select all
textbox1.text = bm.width
textbox2.text = bm.height
I hope this helps :D
by Cheatmasterbw
Thu May 03, 2012 12:18 am
Forum: Coding Help & Support
Topic: PDF Contains String?
Replies: 0
Views: 558

How can I check if a PDF file contains certain text?
Either that or is there a way to get all of the text from a PDF?

Thanks!
by Cheatmasterbw
Wed May 02, 2012 10:43 pm
Forum: Codenstuff boardroom
Topic: Test my Tic-Tac-Toe Game?
Replies: 10
Views: 2422

Sorry, the link is fixed now :D
by Cheatmasterbw
Wed May 02, 2012 12:36 am
Forum: Codenstuff boardroom
Topic: Test my Tic-Tac-Toe Game?
Replies: 10
Views: 2422

I am working on a Tic-Tac-Toe game for my VB class in school. Basically, I made an algorithm that determines the move that will make the program most likely to win. I think it is impossible to beat at the moment, but I don't know for sure. That is why I need you to test the program for me :D If you ...
by Cheatmasterbw
Mon Apr 23, 2012 4:46 pm
Forum: General coding help
Topic: Get color from grayscale
Replies: 9
Views: 2700

If you have 2 of the 3 original RGB values, you can find out the third. You can probably make it so the user chooses 2 of the original values of each pixel, and then paint over part of the image. The user could adjust the 2 values until the part of the image looks right. Edit: like this http://plane...
by Cheatmasterbw
Mon Apr 23, 2012 3:59 pm
Forum: General coding help
Topic: Get color from grayscale
Replies: 9
Views: 2700

Well, seeing as you are multiplying it by those values to get the grayscale, wouldn't it be logical that you divide your grayscale by those same values? It would cancel the math operation, and theoretically restore the color to it's original tone. The problem with that is that you don't know what t...
Search found 1811 matches Page 6 of 182
Go to advanced search