You are here: PSPad forum > Developer forum - new builds > Re: PSPad unicode 4.5.3 (2253) English

Re: PSPad unicode 4.5.3 (2253) English

Goto Page: Previous1 2 3 4

#31 Re: PSPad unicode 4.5.3 (2253) English

Posted by: | Date: 2007-01-29 20:14 | IP: IP Logged

MrSpock:
(6) I can. Error log is on its way.

Hi,
This is my stacktrace:

Exception class: EAccessViolation
Exception address: 004059DB
----------------------------------------------------------------------------------------------------
Stack list, generated 29.01.2007 21:10:14
---
***************************************************************************
Edit by mod:
.
By an advice of the author!
.
Hello, thanks for the report, but please
do not post such "Access violation" logs into the forum,
but post only an hint that you have this error
and send the error log itself to the Author Jan by email! (sup p ort - a't - pspad - c0m)
.
Thanks for the report and your comprehension.
.
The mod.
***************************************************************************

----------------------------------------------------------------------------------------------------
Program : C:\Programme\PSPad\PSPad.exe 4.5.3 (2253)
System : Windows XP Home Edition, Version: 5.1, Build: A28, "Service Pack 2"
Processor: Intel, Intel(R) Celeron(TM) CPU 1200MHz, 1200 MHz MMX
Display : 1024x768 pixels, 32 bpp
----------------------------------------------------------------------------------------------------
Active Controls Hierarchy:

----------------------------------------------------------------------------------------------------

Edited 1 time(s). Last edit at 2007-01-30 09:54 by Stefan.

Options: Reply | Quote | Up ^


#32 Re: PSPad unicode 4.5.3 (2253) English

Posted by: Tim Milo | Date: 2007-01-29 20:19 | IP: IP Logged

pspad:

5: because it is editor command

Is the selection type menu not shoing the hotkeys because is a merge from Synedit? If yes, perhaps the Synedit team could help.

I m looking forward to the SynEdit update .. perhaps it fixes the clipboard crash .. which is still not silent.

Options: Reply | Quote | Up ^


#33 Re: PSPad unicode 4.5.3 (2253) English

Posted by: Tim Milo | Date: 2007-01-29 20:29 | IP: IP Logged

pspad:
1, 2, 3: I am not C programmer. Source sample please

I guess many your problems coresponds to concrete PC configuration. Can you write it please?

It can be .. I did not reinstall everything for a long time .. so 2253 is just the 5th or later update.

Here is a example file for the code explorer

/*================================================
Code explorer flaws in PsPad 4.5.3 (2253)
================================================*/

/* regarding (1) */
#include <stdio.h> /* ... for printf */
#include <string.h> // string operations

typedef enum { CALZONE, MARGERITHA } PizzaType;

/* regarding (3) */
/* its not a function declaration, it's a type */
typedef int(*CostFunctionPtrType)(void);

/* its a one-line declaration of a function */
int Coding(void);

/* regarding (2) declaration not in Prototypes*/
/* its a multi-line declaration of a function */
int buyPizza(int quantity,
PizzaType kind);

int Breakfast(void)
{
return 0;
}

/* regarding new: text appears which shouldnt? */
/* sometimes, C coders are lazy with lines smiling smiley */
int Lunch(void) { return 0; }

int Coding(void)
{
return 30;
}

/* this is an actual function */
int buyPizza(int quantity,
PizzaType kind)
{
if (!quantity)
{
printf("Is 0 what do you really want?\n");
}
else
{
printf("don't forget 4 SEASONS\n");
}
return quantity * 2;
}

/* should be a bug: the comments are not painted
.. still not reproducible with this example */
#define NAMEOF(_data) \
/*repaint bug - get name of symbol */ \
#_data \
/*end ofmacro */

#define ASK_FOR_PIZZA(_data) \
/*repaint bug - get name of symbol */ \
if (_data == CALZONE) \
{ \
printf("I Want my favorite %s\n", #_data);\
} \
else \
{ \
printf("I'd go for %s\n", #_data); \
} \
printf("order over\n\n"); \
((void)0) \
/* end ofmacro */

int main()
{
int costs;
CostFunctionPtrType meal;

meal = &Breakfast;

printf ("(macro test : %s)\n", NAMEOF(costs));

ASK_FOR_PIZZA(CALZONE);
costs = buyPizza((*meal)(), CALZONE);

printf ("%s time, to pay for this: %d\n",
NAMEOF(meal), costs);

return 0;
}

Options: Reply | Quote | Up ^


#34 Re: PSPad unicode 4.5.3 (2253) English

Posted by: bee | Date: 2007-01-31 11:07 | IP: IP Logged

I hope my post is in correct room. I request new feature for next release. It's auto-format text and convert smileys, just like Thunderbird's plain editor. It recognize and auto-format *text* as bold, /text/ as italic, _text_ as underline, etc, also replace text smileys to small image such as smiling smiley as smile, etc. Is it possible?

Options: Reply | Quote | Up ^


#35 Re: PSPad unicode 4.5.3 (2253) English

Posted by: jgodfrey | Date: 2007-01-31 14:10 | IP: IP Logged

Bee,

Just curious what you use PSPad for that would make use of font modifiers and smileys? PSPad is mainly targeted as a "Programmer's Editor", and the languages I develop in don't understand bold, italic, underline, and smileys... ;)

Just curious...

Jeff

Options: Reply | Quote | Up ^


#36 Re: PSPad unicode 4.5.3 (2253) English

Posted by: bee | Date: 2007-02-02 04:34 | IP: IP Logged

@jgodfrey:
I'm also a (delphi) developer. Have you write comments inside your source code? grinning smiley Sometimes I need to emphasize some of the comment text, especially when I works with some other developers together. I know it's not a very important feature actually, but it'd be nice to have it implemented. smiling smiley

Options: Reply | Quote | Up ^


#37 Re: PSPad unicode 4.5.3 (2253) English

Posted by: jgodfrey | Date: 2007-02-02 21:45 | IP: IP Logged

bee:
@jgodfrey:
Have you write comments inside your source code? grinning smiley

Bee,

Comments? We don't need no stinking comments!

...spoken like the Mexican bandit leader "Gold Hat" in the 1948 film "The Treasure of the Sierra Madre" (though hopelessly mis-quoted over the years... ). tongue sticking out smiley

Understood - thanks for the explanation.

Jeff

Options: Reply | Quote | Up ^


#38 Re: PSPad unicode 4.5.3 (2253) English

Posted by: gurbao | Date: 2007-02-03 11:09 | IP: IP Logged

Hi,

it seems the log window is displaying max 1024 chars width.

If I select a wide row in the log window and paste it in the editor the whole length will be displayed.

I think this also was the case in build 2250.

Regards,

Options: Reply | Quote | Up ^


#39 Re: PSPad unicode 4.5.3 (2253) English

Posted by: pspad | Date: 2007-02-04 14:20 | IP: IP Logged

Tim Milo:
Here are some issues, I found again in PsPad 2253 /
WinXPSP2:

I modified Code parser for C++ and most of problems are gone.

Options: Reply | Quote | Up ^


Goto Page: Previous1 2 3 4





Editor PSPad - freeware editor, © 2001 - 2024 Jan Fiala, Hosted by Webhosting TOJEONO.CZ, design by WebDesign PAY & SOFT, code Petr Dvořák, Privacy policy and GDPR