Search:

Type: Posts; User: Guv

Page 1 of 13 1 2 3 4

Search: Search took 1.57 seconds.

  1. Re: One tooltip for Control Array; Not one for each control?

    Joacim Andersson: I decided it would be fun to create a Project which filled in Magic Squares & provided tools making it convenient for a User to generate various special Magic Squares.

    It seemed...
  2. One tooltip for Control Array; Not one for each control?

    I have an application with as many as 625 Textboxes in a runtime generated control array.

    I add textboxes one at a time in a subroutine.

    The application ran with no problems until the...
  3. Replies
    7
    Views
    10,843

    Visual Basic professional vs Express 2010?

    Due to the price ($0.00), I have been using Visual Studio Express 2010.

    Microsoft has announced a price reduction in anticipation of the release of new versions.

    Visual Basic Professional can...
  4. Thread: Attn: Alimsc

    by Guv
    Replies
    0
    Views
    463

    Attn: Alimsc

    Did you get my reply relating to the Newton method?

    Sorry I did not notice the message from you sooner.
  5. Replies
    5
    Views
    4,765

    Re: Set pixel in some container?

    Boops Boops: Thanx much for the very useful information in your posts.

    Will make use of it in my current & future projects. I copied from your posts & from the Linked-to Sites indicated in your...
  6. Replies
    5
    Views
    4,765

    Re: Set pixel in some container?

    Boops Boops: Thanx for your advice. I have copied the code you indicated, scanned it briefly, & will study it later.

    I must update my signature. I amnow running 64Bit Windows 7 & using VB.net 2010...
  7. Replies
    5
    Views
    4,765

    Set pixel in some container?

    VB 6.0 had a Set Pixel function, which is not available in VB.net. Help suggested using a draw ellipse function with parameters specifying a circle one pixel in diameter.

    The above is painfully...
  8. Replies
    3
    Views
    3,662

    Re: VB 6.0 & 32Bit Windows 7

    The install worked, but showed some complaining messages.

    One VB6.0 application ran okay. Perhaps the only problem will be attempting to produce code to be run under Win7 outside the IDE.

    I...
  9. Replies
    3
    Views
    3,662

    VB 6.0 & 32Bit Windows 7

    I am right now installing VB6.0 on a 32Bit Windows 7 system.

    The install process complained about compatibility issues, & I am wondering what might go wrong.

    Has anyone tried to install VB6.0...
  10. Replies
    19
    Views
    1,142

    Re: VB 6.00 under XP and/or VISTA?

    Thanx for all the information.

    I have yet to be disappointed at this site.
  11. Replies
    19
    Views
    1,142

    VB 6.00 under XP and/or VISTA?

    I wrote about ten applications using VB 6.0 (SP5) under Windows 98SE. I have the Enterprise Edition, but have not done much with either Visual C++ or Visual FoxPro.

    Can Visual Basic 6.0 create...
  12. Replies
    8
    Views
    934

    Re: matrices help again (inverse) please

    Several years ago there was a thread at this forum whihc descibed matrix inversion, determinant evaluation, and solution of simultaneous linear equations.

    A search might find it.
  13. Replies
    6
    Views
    3,771

    Re: binomial theorem, with two unknowns

    The first answer seems incorrect to me. Check the following

    (1 + bx)n = 1n + b*1n-1*x + (n-1)*b*1n-2*x2

    Compare the above with 1 + 7.5x + 22.5x2 + additional terms

    From the above, b = 7.5...
  14. Replies
    2
    Views
    623

    Re: parametric equation help

    Fiddle with the two equations until you have t = F(x) & t= G(y).

    Then F(x) = G(y), eliminating t. Fiddle with this to simplify it. They usually want y = H(x).

    I could do it all for you, but...
  15. Replies
    34
    Views
    1,500

    Re: [RESOLVED] Probability question

    Rassis: Your last post seems right on. I tried my approximation using a weighted average of probabilities for 365 & 366 day years. Probability was same for 3 digits. I suspect that the weighted...
  16. Replies
    4
    Views
    546

    Re: Anomaly relating to certain polynomials.

    You folks seem to be misunderstanding the nature of this anomaly.

    There is no problem finding a very precise approximation to the roots of these polynomials. I know that my VB program gives about...
  17. Replies
    4
    Views
    546

    Anomaly relating to certain polynomials.

    A while ago I wrote a VB program to find the roots of polynomials. It easily found all the roots for polynomials of order 20-40, and I think might handle order 100 and beyond.

    Recently I...
  18. Replies
    34
    Views
    1,500

    Re: [RESOLVED] Probability question

    The leap year algorithm is as follows (order of tests is critical).If year is evenly divisible by 400, it is a leap year.

    If year is evenly divisible by 100, it is not a leap year.

    If year is...
  19. Replies
    3
    Views
    606

    Re: Fairly hard probability q [SOLVED]

    What is the shape of a die with 100 sides if it is required that each side have the same probability of being faceup?
  20. Thread: Need help

    by Guv
    Replies
    3
    Views
    539

    Re: Need help

    Are you allowed to use a calculator which only does add, subtract, multipy, & divide? Id est: A calculator without a square root function.
  21. Thread: Division by zero

    by Guv
    Replies
    3
    Views
    530

    Re: Division by zero

    There are a few specialized problems for which logic provides a valid answer for zero divisors.

    Example: Calculation of angles using the Atn function. You want to know the angle given (X, Y),...
  22. Replies
    34
    Views
    1,500

    Re: [RESOLVED] Probability question

    Marco is essentially correct, but calculaing the exact probabilities seems more complex. His formula ignores consideration of leap years.

    Perhaps use his formulae twice, once for years with 365...
  23. Replies
    11
    Views
    755

    Will there be a C++.net?

    I am considering learning to use Visual C++ after learning to use Visual Basic.net MY Visual studio includes C++ 6.0, but I have only used VB 6.0

    If there is going to be a similar upgrade from C++...
  24. Replies
    4
    Views
    833

    Re: How many combinations??

    Kedaman: Right you are!!
  25. Replies
    4
    Views
    833

    Re: How many combinations??

    Why not 48 + 4 = 52?

    There are 16 sets of cells parallel to each of the xyz-axes: 3 * 16 = 48
    There are 4 diagonals: 48 + 4 = 52
  26. Thread: turing machine :(

    by Guv
    Replies
    12
    Views
    851

    Re: turing machine :(

    Kedaman: Sorry if I mislead anybody. It has been a long time since I read anything about Turing machines. I only remembered that they had very few instructions, which made it easy to analyze their...
  27. Thread: turing machine :(

    by Guv
    Replies
    12
    Views
    851

    Re: turing machine :(

    I think a Turing machine can only do a few operations (less than 10-20). Try a Web search to find out what operations are allowed. It should be a lot simpler to understand than the posted description...
  28. Replies
    234
    Views
    9,529

    Re: Close USA borders to Arab world?

    An interesting ethical issue has been raised here. Must you take action to save somebody?

    It seems rational to me that a person is required to do no evil, but is not required to do good.

    I...
  29. Thread: solving 2tanx+x=0

    by Guv
    Replies
    2
    Views
    2,074

    Re: solving 2tanx+x=0

    The Newton iterative method should work. To find a zero of F(x), iterate the following.

    NextX = X - F(X) / F'(X)

    Guess at an initail value, computer NextX. then use NextX to compute another...
  30. Replies
    14
    Views
    1,229

    NotLKH: Martin Gardner is one of my favorite...

    NotLKH: Martin Gardner is one of my favorite people and a man to be respected. His columns in Scientific American were delightful. I read almost all of them.

    Congratulations!! It is to your credit...
  31. Replies
    14
    Views
    1,229

    NotLKH: For order 3, there is only one magic...

    NotLKH: For order 3, there is only one magic square if you use the integers from 1 to 9. It can be reflected & rotated, but that does not really change its structure. In a sense, using an arithmetic...
  32. Thread: relative speed

    by Guv
    Replies
    2
    Views
    471

    Work with the angles. Consider a right triangle...

    Work with the angles. Consider a right triangle with one leg parallel to the direction of motion of the car. The other leg is perpendicular to the motion of the car and pointing directly at object....
  33. Replies
    14
    Views
    1,229

    NotLKH: Continuous range seems more essential....

    NotLKH: Continuous range seems more essential. Otherwise, I think you are dealing with a different game.

    Starting with some value other than one or using an arithmetic progression (say 1, 3, 5, 7,...
  34. Replies
    14
    Views
    1,229

    Kedaman: Constructing Magic Squares is...

    Kedaman: Constructing Magic Squares is interesting to some people. When very young, I was both fascinated and challenged by them. It might have been a child who coined the term Magic.

    The...
  35. Replies
    14
    Views
    1,229

    The standard definition uses the integers from 1...

    The standard definition uses the integers from 1 to n2.

    It is interesting to use zero to (n2 - 1) and radix n notation.

    For n > 3, you can create squares with various special properties. The...
  36. Replies
    4
    Views
    651

    TheManWhoCan: You remembered the proof...

    TheManWhoCan: You remembered the proof incorrectly. Your proof only proves that the sum is less than an infinite sum of ones. None of your groups is greater than one

    The grouping you need is the...
  37. Replies
    5
    Views
    572

    Search for “Pythagorean Theorem,” which proves...

    Search for “Pythagorean Theorem,” which proves that x2 + y2 = z2 if (x, y) are the short sides of a right triangle and z is the hypotenuse. I am pretty sure that the reverse theorem has also been...
  38. Replies
    7
    Views
    447

    For amusement and due to nostalgia, I run DOS &...

    For amusement and due to nostalgia, I run DOS & windows 3.11 on a Multi-OS system. They are disappointing due to the lack of video drivers compatible with modern PCI/AGP graphics cards. I intend to...
  39. Replies
    1
    Views
    467

    Lynn Benton, Neil Rothman, Jordan Rabin?

    Where are you?
  40. A Forgotten Athlete & his never broken record.

    In the early 1940's Cornelius “Dutch” Warmerdam raised the pole vault record from 14 feet 11 inches to 15 feet 7.75 inches (4.77 meters). He vaulted 15 feet 8.5 inches (4.79) indoors, but indoor...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width