Search found 1116 matches

by cogier
Friday 30th September 2016 3:41pm
Forum: General
Topic: Interesting pieces of code
Replies: 3
Views: 6670

Re: Interesting pieces of code

This is another piece of code I liked. I had a database stored in a .csv file but I wanted to display the contents in a particular order. This code is not exactly as used but simplified to show the principle. Public Sub Form_Open() Dim sInputString As String[] = ["One ", "Three "...
by cogier
Monday 26th September 2016 5:59pm
Forum: General
Topic: Interesting pieces of code
Replies: 3
Views: 6670

Re: Interesting pieces of code

Well I was pleased with this: - Public Sub Form_Open() Dim sTemp As String = "This is a very badly spaced string" Dim sCheck As String Repeat sCheck = sTemp Print sTemp sTemp = Replace(sTemp, " ", " ") Until sCheck = sTemp sTemp = Replace(sTemp, " is", " ...
by cogier
Monday 26th September 2016 4:50pm
Forum: Lounge
Topic: You are welcome
Replies: 13
Views: 21918

Re: You are welcome

Thanks to all of you for joining. The more the merrier! :D
by cogier
Monday 26th September 2016 4:41pm
Forum: General
Topic: Normally distributed curve formula
Replies: 12
Views: 19624

Re: Normally distributed curve formula

I have tried your solution but it seems very complicated. Have a look at the attached for a different solution, but still using the Bell Curve principle.
take1.tar
(30.5 KiB) Downloaded 854 times
by cogier
Sunday 25th September 2016 4:55pm
Forum: General
Topic: Normally distributed curve formula
Replies: 12
Views: 19624

Re: Normally distributed curve formula

Regarding the lines, see the attached. I'll have a go at the circles later.
take1.tar
(27 KiB) Downloaded 890 times
by cogier
Thursday 22nd September 2016 2:55pm
Forum: Web
Topic: Web Form
Replies: 10
Views: 26184

Web Form

In the last 'Forum' we found out how to run the Web Form on a home computer but can anyone explain in detail the way to put it on the web.

Thanks