Click here to Skip to main content
15,886,689 members
Articles / Programming Languages / Visual Basic
Article

Fill MSFlexGrid with Numbers and Create Mathematical Trick

Rate me:
Please Sign up or sign in to vote.
2.00/5 (3 votes)
15 Sep 2008CPOL1 min read 30.9K   420   3   5
Create Mathematical Trick by displaying seven numerical tables using MSFlexGrid
ExeFile

Introduction

I am using seven numerical tables to create this Mathematical Trick. I found the idea of this trick in my old papers but I don't remember from which book or magazine I read it before. I confess that my work is a translation of this idea to a VB6 program.

Background

  • Choose number from 1 to 100, keep it in your mind.
  • I shall display (7) tables.
  • Every table contains some numbers.
  • Search for the number of your choice in every table.
  • If you find it: Click (Yes) button.
  • If not: Click (No) button.
  • After displaying last table (number 7):
  • I shall tell you your choice number!

Using the Code

The following code is an example to fill MSFlexGrid with numbers:

VB.NET
Dim c As Integer
Dim r As Integer
Dim n As Integer
Dim T As Integer

   With NumGrid
      T = 1
      For r = 0 To 4
         For c = 0 To 9
            .TextMatrix(r, c) = Str(T)
            T = T + 2
         Next c
      Next r

Please refer to the source code (Sub FillTab) to see how I fill the grid with numbers seven times.

Remarks

You can find the source code when you extract the file SourceFile.zip and you can find the *.exe when you extract the file ExeFile.zip.

Last Words

I hope that you enjoy this trick. If anybody knows the exposition of this trick, please let us know.

Contact Details

History

  • 9th September, 2008: Initial post
  • 15th September, 2008: Source and demo updated

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Egypt Egypt
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralI shall search again.. Pin
Mostafa Kaisoun12-Sep-08 8:31
Mostafa Kaisoun12-Sep-08 8:31 
GeneralPart of solution.. Pin
Mostafa Kaisoun12-Sep-08 8:24
Mostafa Kaisoun12-Sep-08 8:24 
Generalabout the trick Pin
LotharLanger11-Sep-08 6:33
LotharLanger11-Sep-08 6:33 
GeneralI know, but how?! Pin
Mostafa Kaisoun10-Sep-08 7:13
Mostafa Kaisoun10-Sep-08 7:13 
GeneralRe: I know, but how?! Pin
Rafael Oliveira10-Sep-08 11:43
Rafael Oliveira10-Sep-08 11:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.