Tuesday, September 18, 2018

Digest for comp.programming.threads@googlegroups.com - 19 updates in 6 topics

Elephant Man <conanospamic@gmail.com>: Sep 18 07:43AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:44AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:44AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:45AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:46AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:46AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:47AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:48AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:49AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:50AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:50AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 07:51AM

Article d'annulation posté via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 08:06AM

Article d'annulation émis par un modérateur JNTP via Nemo.
Elephant Man <conanospamic@gmail.com>: Sep 18 08:07AM

Article d'annulation émis par un modérateur JNTP via Nemo.
Horizon68 <horizon@horizon.com>: Sep 17 05:06PM -0700

Hello...
 
 
What is the essence of human smartness ?
 
This is a good subject of political philosophy..
 
So we have to be smarter to answer it correctly..
 
Individual human smartness is composed of genetical
smartness and cultural smartness..
 
But if you keep talking about individual smartness neglecting
the smartness of a group of humans, this is not correct.
 
But what is the smartness of a group of humans ?
 
It is composed of individual smartness , and the smartness
of the interaction of the group of humans, but this is not
a sufficient definition because it must be more understood,
because the smartness of the interaction of a group of people
is also the fact that we have to know that you can fail to solve the
problem because you have not found the right "path" that is more hidden
to smartness that leads to the solution of the problem, and this makes
us understand that the smartest among us can fail at solving a problem
or inventing algorithms if he didn't find the correct path that is more
"hidden" to smartness that leads to the solution of the problem , and
this is why we can say that a great number of people that are smart and
less smart can permit us to find the path that is more hidden to
smartness that leads to the solution of the problem, so this makes us
understand that the smartness of a "group" of humans is also dependent
on less smart people that can find the right path that is hidden to
smartness that leads to the solution of the problem. This is why our
world needs arabs and needs white europeans and needs asians and needs
south americans etc. to be able to solve problems and to be able to
invent new things.
 
 
More about me:
 
As you have noticed i am a white arab, and a more serious computer
programmer, but you have to know more about me, my father is very
smart, the genetical IQ of my father is 135, and my
genetical IQ is around 120, but i have lost some IQ points because
my nutrition was not so good because i was disliking many vegetables
and my nutrition was not balanced so i have lost some IQ points
because of this envirenmental factor, but my genetical IQ is around 120.
 
 
And i invite you to read the following webpage:
 
Raise Your Child's IQ with Multivitamins
 
http://tipsdiscover.com/health/raise-your-childs-iq-with-multivitamins/
 
 
Thank you,
Amine Moulay Ramdane.
Horizon68 <horizon@horizon.com>: Sep 17 03:36PM -0700

Hello,
 
 
More about me:
 
As you have noticed i am a white arab, and a more serious computer
programmer, but you have to know more about me, my father is very
smart, the genetical IQ of my father is 135, and my
genetical IQ is around 120, but i have lost some IQ points because
my nutrition was not so good because i was disliking many vegetables
and my nutrition was not balanced so i have lost some IQ points
because of this envirenmental factor, but my genetical IQ is around 120.
 
 
And i invite you to read the following webpage:
 
Raise Your Child's IQ with Multivitamins
 
http://tipsdiscover.com/health/raise-your-childs-iq-with-multivitamins/
 
 
Thank you,
Amine Moulay Ramdane.
Horizon68 <horizon@horizon.com>: Sep 17 02:54PM -0700

Hello..
 
 
My other WinMenus that is not graphical but that is text mode and that
uses the Object Pascal CRT unit was updated to version 1.45, now it is
powerful.
 
You can download it from:
 
https://sites.google.com/site/scalable68/winmenus
 
 
Description

 
Drop-Down Menu Widget using the Object Pascal CRT unit
 
Please look at the test.pas example inside the zip file Use the 'Delete'
on the keyboard to delete the items
and use the 'Insert' on the keyboard to insert the items
and use the 'Up' and 'Down' and 'PageUp and 'PageDown' to scroll .. and
use the 'Tab' on the keyboard to switch between the Drop Down Menus and
'Enter' to select an item..
and the 'Esc' on the keyboard to exit..
and the 'F1' on keyboard to delete all the items from the list
right arrow and left arrow to scroll on the left or on the right

 
You can search with SearchName() and NextSearch() methods and now the
search with wildcards inside the Widget is working perfectly.
 
Winmenus is event driven, i have to explain all to you to understand
more...
 
At first you have to create your Widget menu by executing something like
this:
 
Menu1:=TMenu.create(5,5);
 
This will create a Widget menu at the coordinate (x,y) = (5,5)
 
After that you have to set your callbacks,cause my Winmenus is event
driven, so you have to do it like this:
 
Menu1.SetCallbacks(insert,updown);
 
The SetCallbacks() method will set your callbacks, the first callback
parameter is the callback that will be executed when the insert key is
pressed and it is the insert() function, and the second callback is the
callback that will be called when the up and down keys are pressed and
it is the function "updown" , the remaining callbacks that you can
assign are the following keys: Delete and F1 to F12.
 
After that you can add your items and the callbacks to the Menu by
calling the AddItem() method like this:
 
Menu1.AddItem(inttostr(i),test1);
 
the test1 is a callback that you add with AddItem() method.
 
After that you will enter a loop like this , the template of this loop
must look like the following, that's
not difficult to understand:
 
Here it is:
 
===
repeat
 
textbackground(blue);
clrscr;
menu2.execute(false);
menu1.execute(false);
 
case i mod 2 of
 
1: ret:=Menu1.Execute(true);
0: ret:=Menu2.Execute(true);
end;
if ret=ctTab then inc(i);
 
until ret=ctExit;
 
menu1.free;
menu2.free;
 
end.
 
==
 
When you execute menu1.execute(false), with a parameter equal to false,
my Winmenus widget will draw your menu without waiting for your input
and events, when you set the parameter of the execute() method to true
it will wait for your input and events, if the parameter of the execute
method is true and the returned value of the execute method is ctTab,
that means you have pressed on the Tab key, and if the returned value is
ctExit, that means you have pressed on the Escape key to exit.
 
Language: FPC Pascal v2.2.0+ / Delphi 7+: http://www.freepascal.org/
 
Operating Systems: Windows, Mac OSX , Linux , Unix...
 
Required FPC switches: -O3 -Sd
 
-Sd for delphi mode....
 
-dUnix for Linux , Unix and Mac OSX
 
-dWindows for windows
 
Required Delphi switches: -DMSWINDOWS -$H+
 
For Delphi 7 to 2007 use -DDelphi switch
 
For Delphi XE-XE7 use the -DXE switch
 
 
 
Thank you,
Amine Moulay Ramdane.
Horizon68 <horizon@horizon.com>: Sep 17 12:35PM -0700

Hello..
 
Read this:
 
 
I invite you to listen to this beautiful music
from my country:
 
C'est la vie - cha3bi ray - barwali 2018
 
https://www.youtube.com/watch?v=UL_0sioV6tQ
 
 
Thank you,
Amien Moulay Ramdane.
Horizon68 <horizon@horizon.com>: Sep 17 12:16PM -0700

Hello,
 
 
My WinMenus using wingraph was updated to version 1.23
 
I have corrected a small bug in the event loop, now i think
all is working correctly, and i think my units are much more stable,
here is the units that have included inside the zip file of my new
Winmenus version 1.22: so i have included the my Graph3D unit for 3D
graphism that looks like the graph unit of turbo pascal, and i have
included my enhanced Winmenus GUI component using wingraph, and i have
included the GUI unit that contains the other GUI components, and of
course i have included Wingraph that look like the graph unit of Turbo
Pascal but it is for Delphi and FreePascal.
 
About my software project..
 
As you have noticed i have extended the GUI components using Wingraph,
now i have added a checkbox GUI component, now here is the GUI
components that are supported:
 
- Button
- Label
- TextBox
- MessageBox
- CheckBox
- Winmenus
 
 
But i think that the Memo GUI component can be "emulated"
with my Winmenus GUI component, so i think that my
Winmenus GUI component is powerful and i think it is
complete now, and i will soon add a more powerful GUI component called
TreeMenu that will look like the GUI of a file manager, but you will be
able to click on the callbacks and to search etc. it will be
implemented with two of my Winmenus and with my powerful StringTree here:
 
https://sites.google.com/site/scalable68/stringtree
 
 
And soon i will also implement a Calendar GUI component and
a ProgressBar GUI component.
 
But you have to understand me , i am implementing those
GUI components so that you will be able to design and implement
more interactive GUI applications for graphical applications
with Wingraph and such.
 
 
You can download all the new zip files for Delphi and FreePascal of my
Winmenus version 1.23 that contains all the above units from:
 
 
https://sites.google.com/site/scalable68/winmenus-using-wingraph
 
 
And please run the windows executables of the demos that i have included
inside the zip files to see how they are working..
 
 
Thank you,
Amine Moulay Ramdane.
You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page.
To unsubscribe from this group and stop receiving emails from it send an email to comp.programming.threads+unsubscribe@googlegroups.com.

No comments: