InterBase Database Maximum User Connections

I got this quote from the operational guide itself.

* Maximum number of clients connected to one server

There is no single number for the maximum number of clients the InterBase server can serve—it depends on a combination of factors including capability of the operating system, limitations of the hardware, and the demands that each client puts on the server.

OPERATIONAL GUIDE MAXIMUM USER CONNECTION
OPERATIONAL GUIDE MAXIMUM USER CONNECTION

 

Avast Free Anti-Virus for WinXP using Universal Activation Key

Yup, you heard it right, avast just gave their universal key for avast free installed on windows xp. I am going to post the original message. There are still a few of us using windows xp

Good news! You no longer need to register

Newer versions of Avast Free Antivirus will no longer ask you to register, and older versions will keep working even after they’ve “expired”. If you’re using Avast Free Antivirus version 7 or older,

Universal Key: W11332244H9900A0420-8MRTR8W5

AVAST FREE - UNIVERSAL KEY WINXP
AVAST FREE – UNIVERSAL KEY WINXP

 

2018 Philippines – Globe , Smart , Sun – Mobile Numbers

As we text and call people, we need to know what network or telecommunication they are so that we don’t go overboard on extended calls and crossing over. Like for me, when I call a Globe number I don’t get charged since I am using a Globe Postpaid Plan. But if I call a Smart number, that is the time I get charged.

For now, here is my own compilation for the 2018 Philippines Globe / Smart / Sun Cellular telephone numbers.

Globe and Touch Mobile SMART and Talk N’Text SUN Cellular
817 905 906 813 900 907 908 922 923
915 916 917 909 910 911 912 924 925
926 927 935 913 914 918 919 931 932
936 937 945 920 921 928 929 933 934
955 956 965 930 938 939 940 942 943
966 975 977 946 947 948 949 944
994 995 996 950 989 998 999
997

Teamviewer : Activated the black screen feature but is not working on windows 10

Recently, I have tried to combine both the portable version and the installed version. If you are an IT guy and you need to update a PC on your office mates office remotely, you need to hide what you are doing by clicking the black screen feature.

And as an experiment, I tried to remotely connect to my laptop using the portable version. And as it turns out, it is not working on the client side. It seems that when you activate it on the portable version, the installer for the video card does not kick in thus, people on the client side can see what you are really doing although on the server side (where the IT guys is working, he can see the tick box activated).

In this post I will include the picture on how to activate the black screen on Teamviewer.

Teamviewer Black Screen Opion
Settings that show how to set the black screen on the client side

Laptop : ASUS X455L What does expansion up to 8 GB SDRAM mean?

Right now, I have my laptop ASUSX 455L, under the memory section it says…

DDR3L 1600 MHz SDRAM, 1 x DIMM socket for expansion up to 8 GB SDRAM

The laptop already came with 4GBs of RAM. And I’m guessing you can expand it because i saw youtube video that a guy jut slided a ram chip in the slot.

For the softwares that i run, adding windows update (which i tried to disable for a few times already) on the mixture, it seems to be slowing down. So does this mean I can put 4GB more to make it 8GB or can I put 8GB on the expansion to have 12GB of RAM?

As it turns out, you cannot inject more than 8GB or ram. Comon reasons could be due to chipset limitations or max width of copper traces to the DIMM socket.

So the next move for this one is to get a 4GB ram to add to my current 4GB ram to have a maximum of 8GB which is still at the maximum level.

Hope this helps

Coffee Cup

 

 

Delphi : Open Excel File using ShellExecute

This is a nifty code that i use whenever I do excel conversions. It helps users by seeing the excel file and not have to look for the file once the system has generated the output file

ShellExecute(Handle, 'open', 'c:\MyDocuments\MyFile.doc',nil,nil,SW_SHOWNORMAL);

In this example, the file is located inside the ‘My Documents’ folder with the file name ‘MyFile.xls’. Just in case the file name you are using is dynamic, you can enclose the variable with a PChar.

ShellExecute(Handle, 'open', PChar(varMyFilename),nil,nil,SW_SHOWNORMAL) ;

Enjoy

Coffee Cup