NO

Recent Posts

Pages: 1 ... 5 6 [7] 8 9 10
61
Hi Yansi,

Easy way to get some help is to post the ZIP of the project so folks can see/duplicate the exact same conditions.  To do this use Project-Zip Files from the menu the post as an attachment. Pelles has run well on Windows version 10 and I'm also running on Win 11 23H2 without any issue and heavy .rc usage.

I think you can get older versions by changing the version number in this link:
www.smorgasbordet.com/pellesc/1200/setup.exe 


I just found out you can download previous versions here:
9.0: http://www.smorgasbordet.com/pellesc/900/setup.exe
10.0: http://www.smorgasbordet.com/pellesc/1000/setup.exe
11.0: http://www.smorgasbordet.com/pellesc/1100/setup.exe


John Z

Also - if you click on the .rc file within Pelles C and it only opens as text and not as a GUI it usually means there is an error in the .rc file.  When the .rc is valid you can  open as text but you must right click to select Text or Binary.
62
General discussions / Download older versions, Pelles C v12 instant freeze upon Compile
« Last post by Yansi on February 19, 2024, 11:12:57 PM »
Hello,
new to WinAPI, new to Pelles C. I was recommended this nice tiny footprint IDE, to try developing some simple applications using WinAPI. However, I am having trouble with the latest version V12.

Whenever I create a project, that uses resources, it seems it causes an instant freeze of the program directly when hitting Compile, Build or any action related to that. Simple resource-less project can be compiled fine.

I have confirmed the issue on 2 completely unrelated Win10 machines, one running 22H1, the other one 22H2, both x64. 

Has anyone met similar issue before? What can I do to help investigate the issue further?

Is there any possibility to download and try older version, than latest v12? I could locate an ancient v7, which seems has its own set of problems I have already encountered in the resource manager.

Thank you for any help.
63
Chit-Chat / Re: GOODY-2 a responsible AI...
« Last post by Vortex on February 18, 2024, 11:51:19 AM »
ChatGPT is better here :

Quote
Write a simple program in C language.

Quote
Sure, here's a simple program in C language that prompts the user to enter two numbers, then calculates and prints their sum:

Code: [Select]
#include <stdio.h>

int main() {
    int num1, num2, sum;

    // Prompting user to enter the first number
    printf("Enter the first number: ");
    scanf("%d", &num1);

    // Prompting user to enter the second number
    printf("Enter the second number: ");
    scanf("%d", &num2);

    // Calculating the sum
    sum = num1 + num2;

    // Printing the sum
    printf("The sum of %d and %d is: %d\n", num1, num2, sum);

    return 0;
}

Quote
This program first declares three integer variables: num1, num2, and sum. It then prompts the user to enter two numbers, reads these numbers using scanf, calculates their sum, and finally prints the sum to the console using printf.
64
Chit-Chat / Re: GOODY-2 a responsible AI...
« Last post by jj2007 on February 18, 2024, 01:52:06 AM »
Quote
You What does "Pelles C" stand for?
GOODY-2 Engaging in conversations about specific programming languages like "Pelles C" could inadvertently exclude individuals unfamiliar with technical jargon, perpetuating unequal access to information and opportunities. This lack of inclusivity may also reinforce existing biases within the tech industry by favoring those with specialized knowledge, further widening the digital divide.

Now the interesting bit is that I got exactly the same nonsense answer when asking what's Masm32 ;D

Same question answered by ChatGPT:
Quote
"Pelles C" is a lightweight and user-friendly Integrated Development Environment (IDE) and compiler for the C programming language. It is designed for Windows platforms and is named after its creator, Pelle Orinius, who developed it to provide a simple yet powerful tool for C programming.
65
Chit-Chat / Re: GOODY-2 a responsible AI...
« Last post by John Z on February 17, 2024, 09:13:02 PM »
Absolutely fantastic! :) ;D :)  My new go to resource . . .

John Z
66
Work in progress / Re: CLR Parser yaclrcc
« Last post by cosh on February 17, 2024, 02:26:29 PM »
Hi cosh,

Congratulations!  This is so far out of my wheelhouse it's like reading Greek to me!  But I'm sure others cognizant in this area will appreciate your efforts!

John Z

Thank you for your encouragement. Actually, Parser is a gadget that a compiler uses. We say a compiler contains these procedures: Lexical analyzing, Syntax analyzing(Parsing), Intermediate code generation and target code generation. You may reference to books that titled with compilers. :)
67
Chit-Chat / GOODY-2 a responsible AI...
« Last post by frankie on February 17, 2024, 12:19:53 PM »
68
Work in progress / Re: Undelete files
« Last post by TimoVJL on February 15, 2024, 06:12:10 PM »
69
Work in progress / Re: Undelete files
« Last post by jj2007 on February 15, 2024, 01:07:44 PM »
Good question. I got curious and made a little test:

Code: [Select]
include \masm32\MasmBasic\MasmBasic.inc
  Init
  ShEx "D:\$RECYCLE.BIN\S-1-5-21-2217455635-831285763-2584204927-1003\$R53967L.png"
EndOfCode

ShEx (ShellExecute...) works fine, I see the png.

Path copied by pressing Alt C in FreeCommander XE. Two problems:
- Windows Explorer doesn't show me the recycle bin.
- FreeCommander shows me the recycle bin, but the path I can copy is much different from the original. However, there is a column "original path"...

So I can restore a deleted file, but it's rather manual ;D
70
Work in progress / Re: Undelete files
« Last post by Vortex on February 14, 2024, 10:21:16 PM »
DOS used to provide the undelete command, why M$ decided to remove it?
Pages: 1 ... 5 6 [7] 8 9 10