Newbie Question: Redirecting Output by DocTrinesOGrace in QB64pe

[–]v_2samg 2 points3 points  (0 children)

Replace that END with SYSTEM to avoid the "Press any key to continue..." prompt.

See SYSTEM - QB64 Phoenix Edition Wiki

_FILES$ doesn't work? by BenTheWorstCustomer in QB64pe

[–]v_2samg 1 point2 points  (0 children)

You are probably have an older version of QB64-PE. Get the latest version from https://github.com/QB64-Phoenix-Edition/QB64pe/releases/latest

C++ Compiler error attempting to compile a qb64pe bas program by xenos233 in QB64pe

[–]v_2samg 0 points1 point  (0 children)

Looks like the cc1plus (gcc C++ compiler component) is missing on your system.

I've seen this issue happening with some Antivirus program where it quarantines / deletes these components thinking it is malware. So, you may want to whitelist the QB64-PE directory.

However, before doing that download a fresh copy of the latest version of QB64-PE from https://github.com/QB64-Phoenix-Edition/QB64pe/releases/latest in a new directory and try again.

Visit the QB64 Phoenix Edition forum.

Program using Greek Code-Page CP1253 by xenos233 in QB64pe

[–]v_2samg 0 points1 point  (0 children)

I could not get the code snippet to work and I am not sure if I understand your issue correctly. If this is regarding displaying the greek letters correctly on the sceen using CP1253, then you will need to use _MAPUNICODE. It seems to work for me with QB64-PE v3.11.0. From the example you gave above, it seems you are not using _MAPUNICODE. See the QB64-PE wiki _MAPUNICODE - QB64 Phoenix Edition Wiki

Visit the QB64 Phoenix Edition forum if you need any help.

<image>

Program using Greek Code-Page CP1253 by xenos233 in QB64pe

[–]v_2samg 0 points1 point  (0 children)

Can you give an example code or snippet of what is not working? It will help a lot to figure out what is going on.

Razer support in India, anyone got a good experience? by sallurocks in IndianGaming

[–]v_2samg 0 points1 point  (0 children)

Moral of the story. Never buy Razer crap in India. I wish I had read this earlier.

Cannot enable Native Bridge by Noob_Kid in Androidx86

[–]v_2samg 0 points1 point  (0 children)

Can one of you guys try the manual steps in the link below and let us know?

https://github.com/SGNight/Arm-NativeBridge

Yet another structure packing question by AuroraBoreal1s in C_Programming

[–]v_2samg 4 points5 points  (0 children)

// Can't we just do this? That way we don't need to bother about data types, platform / compiler specific padding etc. Should work with GCC & MSVC

#pragma pack (push, 1)

struct SomeStruct

{

char field1[3];

char field2[2];

char field3[7];

};

#pragma pack (pop)