Re: [MSEide-MSEgui-talk] Possibly a large project

2011-11-25 Thread IvankoB
Me'll try to build binaries for both lINUX Win32 versions of http://sqlcipher.net/. BTW, it encrypts both database transaction journal. -- All the data continuously generated in your IT infrastructure contains a

[MSEide-MSEgui-talk] SigSegv on TMSEFILESTREAM.create( file, fm_write)

2011-12-09 Thread IvankoB
if the file doesn't exist. Me guess it should raise exception instead. -- Cloud Services Checklist: Pricing and Packaging Optimization This white paper is intended to serve as a reference, checklist and point of

[MSEide-MSEgui-talk] How to check if is correct DLL function imported by the MSE DLL loader ?

2011-12-09 Thread IvankoB
The debugger shows incorrect imports. -- Cloud Services Checklist: Pricing and Packaging Optimization This white paper is intended to serve as a reference, checklist and point of discussion for anyone considering

Re: [MSEide-MSEgui-talk] How to check if is correct DLL function imported by the MSE DLL loader ?

2011-12-09 Thread IvankoB
The debugger shows incorrect imports. How? Oops, it were floating hints over procedure/function type variables in design time (when imports weren't assigned yet). -- Cloud Services Checklist: Pricing and Packaging

[MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread IvankoB
Looks most appropriate amongst others for crypting both single- multibyte data. -- Learn Windows Azure Live! Tuesday, Dec 13, 2011 Microsoft is holding a special Learn Windows Azure training event for developers. It

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread IvankoB
PChar or AnsiString ? In which context? Per char access plus string length. -- Systems Optimization Self Assessment Improve efficiency and utilization of IT resources. Drive out cost and improve service delivery.

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread IvankoB
Per char access plus string length. I still don't get the question. Please explain. How to pass it to C function expecting unsigned char* ? PChar(utf8_string) len=strlen(utf8_string) or @utf8_string[1] len=length(utf8_string)? BTW, the utf8_string is produced by stringtoutf8(msestring)

Re: [MSEide-MSEgui-talk] Are there any issues to expect with ATI Radeon HD in LINUX ?

2011-12-13 Thread IvankoB
Thanx ! Yesterday me managed the things. One more question - how do You set up fancontrol for video-card's cooler RPM requlator (PWM) ? And which are kernel options to access ATI GPU sensors PWM ? -- Systems

[MSEide-MSEgui-talk] Can freeandnil be used within FINALLY section of TRY ?

2011-12-13 Thread IvankoB
Me have SIGSEGV there even for properly initialized pointers. //- var digest: pEVP_MD; // from OPRNSSL cipher: pEVP_CIPHER; // from OPRNSSL [..] try [..] finally if assigned(digest) then freeandnil(digest); // HERE if assigned(cipher) then freeandnil(cipher); end;

Re: [MSEide-MSEgui-talk] Can freeandnil be used within FINALLY section of TRY ?

2011-12-13 Thread IvankoB
At main.pas:179 if outdata nil then dispose(outdata); me have incorrect memory block (shown if heap trace is on) Uncomenting teh same code at :183 cause the SigSegv. Bypassing this code causes a memory leak, PS: This project has even more extended mopenssl.pas/ Decoding procedure has been

Re: [MSEide-MSEgui-talk] Can freeandnil be used within FINALLY section of TRY ?

2011-12-14 Thread IvankoB
I had to remove Kmail and Knode from my KDE4 installations completely because the akonadi server regularly froze the whole desktop, don't ask me why. Known issues, me had to switch to Opera Mail (also features SQLITE-based local storage).

Re: [MSEide-MSEgui-talk] Can freeandnil be used within FINALLY section of TRY ?

2011-12-14 Thread IvankoB
And then so many keep saying KDE4 is totally usable now! Yeah right. :) These many are users of NVidia GTX470/570/580 or ATI HD68+/69+ :) -- Cloud Computing - Latest Buzzword or a Glimpse of the Future? This paper

[MSEide-MSEgui-talk] TMSEFileStream: can its READDATASTRING be used for reading binary data

2011-12-14 Thread IvankoB
that's returned by the Pointer type ? -- Cloud Computing - Latest Buzzword or a Glimpse of the Future? This paper surveys cloud computing today: What are the benefits? Why are businesses embracing it? What are its

Re: [MSEide-MSEgui-talk] Can freeandnil be used within FINALLY section of TRY ?

2011-12-14 Thread IvankoB
Strangely, possibly incorrect pascal-vs-c typecast. Could You recheck that code (here attached)? Altogether, we'll introduce data transcryption functionality to MSEgui. In the chain Userok.cfg = Userok.des3 = Userok.decrypt, Userok.decrypt should be exact copy of Userok.cfg but it doesn't.

Re: [MSEide-MSEgui-talk] Can freeandnil be used within FINALLY section of TRY ?

2011-12-15 Thread IvankoB
Opera Mail is the best NNTP client for LINUX, IMHO :) Marketing blurb. Reasons? Not marketing - me tried all possible NNTP/Mail clients for LINUX (incl Sylpheed). The Opera's one doesn't degrade as long its local message database grows. Possible because its mail storage is SQLite3-based.

[MSEide-MSEgui-talk] Statfiles: can reading/writting from/to be intercepted ?

2011-12-19 Thread IvankoB
so that to decrypt/encrypt contents on-fly ( by crypto functions using ANSISTRING for both input output data) PS: ANSISTRING is much-much more manageable than pure POINTER for byte-level data manipulations. -- Write

[MSEide-MSEgui-talk] IFI remote datasets

2011-12-19 Thread IvankoB
Can their APPLYUPDATE[S] be executed in FIFO manner - so that only one transaction can be active ( needed to organize backing up DB files before committing transactions ). -- Write once. Port to many. Get the SDK and

[MSEide-MSEgui-talk] Debugging IDE in IDE: SIGTRAP stop in parent IDE on pressing F12 to display a form designer in the child IDE

2011-12-20 Thread IvankoB
SIGTRAP: Trace/ breakpoint on ntdll!DbgUIConnToDbg (win-32, fpc-2.4.4) The debugged project is project run in the debugged IDE. In both projects, there're no active breakpoints, all stop options in project settings are off too. PS: It seems that we have a recursion or endless loop when manual

Re: [MSEide-MSEgui-talk] Debugging IDE in IDE: SIGTRAP stop in parent IDE on pressing F12 to display a form designer in the child IDE

2011-12-21 Thread IvankoB
It seems to be an old (and forgotten) issue :) http://muzso.hu/2011/12/13/setting-f12-as-a-global-hotkey-in-windows; tells: -- Now this is pretty much upsetting. But not all is lost. I tried to google for a way to disable the kernel from registering F12, but found instead

Re: [MSEide-MSEgui-talk] Razor-qt: a new lite Qt-based desktop environment

2011-12-21 Thread IvankoB
now. Razor-qt is a new project creating a lighter desktop environment using Qt. Great work ! These guys have managed not to make already heavy Qt heavier. -- Write once. Port to many. Get the SDK and tools to

Re: [MSEide-MSEgui-talk] Razor-qt: a new lite Qt-based desktop environment

2011-12-21 Thread IvankoB
now. Razor-qt is a new project creating a lighter desktop environment using Qt. Is it capable of top-level (QT MOC) source-code debugging ? If no then hardly usable for complex projects. -- Write once. Port to

Re: [MSEide-MSEgui-talk] Debugging IDE in IDE: SIGTRAP stop in parent IDE on pressing F12 to display a form designer in the child IDE

2011-12-21 Thread IvankoB
http://muzso.hu/2011/12/13/setting-f12-as-a-global-hotkey-in-windows; tells: Really fixes :) If such key doesn't exist (my case) it should be created. -- Write once. Port to many. Get the SDK and tools to simplify

Re: [MSEide-MSEgui-talk] Debugging IDE in IDE: SIGTRAP stop in parent IDE on pressing F12 to display a form designer in the child IDE

2011-12-21 Thread IvankoB
Please provide simple reproducible testcase. Possibly there're memory errors, see the attached stack trace (happened on confirming test query is OK in the SQL editor): #0 0040E103 :0 SYSTEM_SYSGETMEM_FIXED$LONGWORD$$POINTER() #1 0030 :0 ??() #2 0003 :0 ??() #3 064F0633 :0 ??() #4

Re: [MSEide-MSEgui-talk] Debugging IDE in IDE: SIGTRAP stop in parent IDE on pressing F12 to display a form designer in the child IDE

2011-12-21 Thread IvankoB
Please use -gh (heaptrace), maybe there is more information. Strange, no more errors. Maybe because me rebuilt the child IDE within ist parent ? -- Write once. Port to many. Get the SDK and tools to simplify

Re: [MSEide-MSEgui-talk] Encrypted SQLite3 (with sqlite3d.dll from the SQLite Cipher): no such table for really existing table

2011-12-21 Thread IvankoB
Since the subdir access doesn't work the executable directory is used to hold database files. Are you sure the working directory is c:\superprog? It's a syntax example :) -- Write once. Port to many. Get the SDK

[MSEide-MSEgui-talk] SigSegv in the IDE: around form inheritance

2011-12-21 Thread IvankoB
The stack trace: #0 0192 :0 ??() #1 005E5992 :0 DB_TDATASOURCE_$__DOSTATECHANGE() #2 005E5A5E :0 DB_TDATASOURCE_$__PROCESSEVENT$TDATAEVENT$LONGINT() #3 :0 ??() 100% reproducible with the PODPISKA on confirming changes of

Re: [MSEide-MSEgui-talk] Encrypted SQLite3 (with sqlite3d.dll from the SQLite Cipher): no such table for really existing table

2011-12-21 Thread IvankoB
No, as a debugger session from the IDE. Though, it's the same. With DB file pointed by fabsolute path c:\Documents and Settings\Администратор\Мои документы\MSE_PROJECTS\login\db\dbfile.db everthing is OK, but with db\dbfile.db the DB isn't found. For me too. Even encrypted (with

Re: [MSEide-MSEgui-talk] Razor-qt: a new lite Qt-based desktop environment

2011-12-21 Thread IvankoB
It this new will be implementing MOC-code debugging (really handling XML-based MOC data in RTTI manner) then it could make revolution in QT development :) I don't understand the interrelation, Razor-qt is a desktop environment? Oops, no time to see what's exactly :) Smth like a lightweight

[MSEide-MSEgui-talk] Wrong russian text in tdbenumeditlb placed in TDBWidgetGrid

2011-12-22 Thread IvankoB
once the widget gets focus (clicked). Before accessing the cells they look correctly. The bound query has dso_utf8/stringmemo set TRUE. The database encoding is UTF8. The text is russian. Finally, playing with the failing cells results in SigSegv with the below stack trace: #0 0040DC43

[MSEide-MSEgui-talk] The PODPISKA: SigSegv when loading REFEDITIONVIEWFORM from REFCOMPANYVIEWFO (via actEditions)

2011-12-22 Thread IvankoB
#0 7C91B1FA :0 ntdll!RtlpWaitForCriticalSection() #1 7C901046 :0 ntdll!RtlEnumerateGenericTableLikeADirectory() #2 0078C9A0 :0 U_SYSTEM_ORPHANED_FREELISTS() #3 0040EC19 :0 SYSTEM_SYSENTERCRITICALSECTION$formal() #4 0040E748 :0 SYSTEM_ENTERCRITICALSECTION$TRTLCRITICALSECTION() #5 0040DDF8 :0

[MSEide-MSEgui-talk] The PODPISKA: SigSegv when clicking within widgetgrid on REFPUBLISHERVIEWFORM

2011-12-22 Thread IvankoB
#0 7C91B1FA :0 ntdll!RtlpWaitForCriticalSection() #1 7C901046 :0 ntdll!RtlEnumerateGenericTableLikeADirectory() #2 0078C9A0 :0 U_SYSTEM_ORPHANED_FREELISTS() #3 0040EC19 :0 SYSTEM_SYSENTERCRITICALSECTION$formal() #4 0040E748 :0 SYSTEM_ENTERCRITICALSECTION$TRTLCRITICALSECTION() #5 0040DE42 :0

[MSEide-MSEgui-talk] Another SigSegv in the PODPISKA

2011-12-22 Thread IvankoB
function tdatalist.internaladddata(const quelle; docopy: boolean): integer; var int1: integer; po1: pointer; begin beginupdate; try internalsetcount(fcount + 1,true); int1:= fcount - 1 + fringpointer; if int1 = fmaxcount then begin dec(int1,fmaxcount); end; po1:= fdatapo

[MSEide-MSEgui-talk] TDBWidgetGrid: how to delete (or hide) some column in runtime ?

2011-12-22 Thread IvankoB
so that its contents fully disappear like the column width becomes zero. And the column has widget(s) in its fixrow cell(s). -- Write once. Port to many. Get the SDK and tools to simplify cross-platform app development.

Re: [MSEide-MSEgui-talk] SigSegv in the IDE: around form inheritance

2011-12-22 Thread IvankoB
The stack trace: #0 0192 :0 ??() #1 005E5992 :0 DB_TDATASOURCE_$__DOSTATECHANGE() #2 005E5A5E :0 DB_TDATASOURCE_$__PROCESSEVENT$TDATAEVENT$LONGINT() #3 :0 ??() Still not fixed. Active thread: 0x0192 in ?? () #0 0192 :0 ??() #1 005E5C02 :0

[MSEide-MSEgui-talk] TDBEnumEditLB: empty_text

2011-12-26 Thread IvankoB
How to cause it to display this text if no selection made in the list ? -- Write once. Port to many. Get the SDK and tools to simplify cross-platform app development. Create new or port existing apps to sell to

[MSEide-MSEgui-talk] IDE: Project-Tree-Units: error message when clicking on inhertired event handler in descendant form

2011-12-26 Thread IvankoB
For instance, in the PODPISKA, add refs/common/RECEDITFORM.pas to the project tree then click REFCOMPANYEDITFORM.btnSave.OnExecute ( = treceditfo.recsaveexec ). -- Write once. Port to many. Get the SDK and tools to

[MSEide-MSEgui-talk] *.mfm-file closed manually sometimes reopens on saving project or saving all

2011-12-26 Thread IvankoB
if both pas- mfm-files were loaded to the IDE and the pas-fiel was closed earlier. -- Write once. Port to many. Get the SDK and tools to simplify cross-platform app development. Create new or port existing apps to

[MSEide-MSEgui-talk] The PODPISKA: RefCompanyEditForm.dbcdeDateBegin needs FormatEdit/FormaDisplay to match such format of underlying DB

2011-12-26 Thread IvankoB
Otherwise it refuses to post changes with message about date format mismatch. So, FormatEdit/FormaDisplay become required (not auto-tunable) properties. As designed ? -- Write once. Port to many. Get the SDK and tools

Re: [MSEide-MSEgui-talk] The PODPISKA: RefCompanyEditForm.dbcdeDateBegin needs FormatEdit/FormaDisplay to match such format of underlying DB

2011-12-26 Thread IvankoB
Are you sure the error is on DB post and not on text-date conversion in tdbedataedit? Me has retyped the database display format (dd.mm.) into FormatEdit for Post to succeed. -- Write once. Port to many. Get the

Re: [MSEide-MSEgui-talk] *.mfm-file closed manually sometimes reopens on saving project or saving all

2011-12-26 Thread IvankoB
On 12/26/2011 01:16 PM, IvankoB wrote: if both pas- mfm-files were loaded to the IDE and the pas-fiel was closed earlier. Steps to reproduce? It's a very old ghost issue :) Happens after both mfm- pas-file were open simultaneously for some reason but neither manually nor via RClick 's

[MSEide-MSEgui-talk] Even further memory leak

2011-12-29 Thread IvankoB
--- Error --- $004FE60A TOBJE $00432B3D TINTERNALAPPLICATION__EVENTLOOP, line 15632 of D:/msegui/lib/common/kernel/msegui.pas $00433065 TINTERNALAPPLICATION__BEGINMODAL, line 15730 of D:/msegui/lib/common/kernel/msegui.pas

[MSEide-MSEgui-talk] The IDE: memory leak

2011-12-29 Thread IvankoB
happened after an IDE-in-IDE session running the PODPISKA. --- Error --- Heap dump by heaptrc unit 7422473 memory blocks allocated : 891251343/925517976 7422469 memory blocks freed : 891251281/925517912 4 unfreed memory blocks : 62 True heap

[MSEide-MSEgui-talk] Further memory leak

2011-12-29 Thread IvankoB
--- Error --- $00432B3D TINTERNALAPPLICATION__EVEN $00433065 TINTERNALAPPLICATION__BEGINMODAL, line 15730 of D:/msegui/lib/common/kernel/msegui.pas $0042CD01 TWINDOW__BEGINMODAL, line 12920 of

[MSEide-MSEgui-talk] The IDE: if many forms are loaded, it looks funny on taskbar of ICEWM

2011-12-30 Thread IvankoB
like each of the loaded forms is treated as a separate (IceWM) application and selecting the such a form on the taskbar also brings the form to foreground. -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you

Re: [MSEide-MSEgui-talk] The PODPISKA: not saving data on 1-st attempt

2011-12-30 Thread IvankoB
Martin Schreiber mse00...@gmail.com писал(а) в своём письме Fri, 30 Dec 2011 11:58:59 +0500: On 12/30/2011 07:18 AM, IvankoB wrote: Have You checked with the remote source of MSEgui (git clone) ? git shows no local differences from the remote. BTW, the DMPRINT issue is LINUX only

[MSEide-MSEgui-talk] Excetionless function to go saved bookmark ?

2012-01-03 Thread IvankoB
That's no DB exception if not found. -- Write once. Port to many. Get the SDK and tools to simplify cross-platform app development. Create new or port existing apps to sell to consumers worldwide. Explore the Intel

[MSEide-MSEgui-talk] TDBWidgetGrid: how read value of bound DB fields on selecting (clicking in) a record in the grid ?

2012-01-03 Thread IvankoB
Dataset.onAfterScroll isn't desirable here unless combined with the (clicked) selection check. That's : how to know that a record is selected in the grid so that its bound DB fields can be read for values ? -- Write

[MSEide-MSEgui-talk] TMSEtypeField.Format(Disp/Edit) doesn't work anymore

2012-01-03 Thread IvankoB
being bound to tdbrealdisp. -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources to deliver seamless, secure access to virtual desktops. With this all-in-one

[MSEide-MSEgui-talk] File-New-SimpleForm.. is wrongly painted initially

2012-01-12 Thread IvankoB
see the attachment. (win-32)attachment: wrongly_painted_simple_form.png-- RSA(R) Conference 2012 Mar 27 - Feb 2 Save $400 by Jan. 27 Register now!

[MSEide-MSEgui-talk] tdbwidgetgrid.datalink.datasource issues when copying between forms

2012-01-12 Thread IvankoB
- copied dbwidgetgrid has an internal dbwidget bound to query1.field1 - changing dbwidgetgrid.datalink.datasource with same name but with no field1's name (anothe field defs) displays a complain message - since then, it's imposible to assign datalink.* props until

Re: [MSEide-MSEgui-talk] tdbwidgetgrid.datalink.datasource issues when copying between forms

2012-01-12 Thread IvankoB
- copied dbwidgetgrid has an internal dbwidget bound to query1.field1 - changing dbwidgetgrid.datalink.datasource with same name but with no field1's name (anothe field defs) displays a complain message - since then, it's imposible to assign datalink.* props until

Re: [MSEide-MSEgui-talk] tdbwidgetgrid.datalink.datasource issues when copying between forms

2012-01-12 Thread IvankoB
w/o informing which exact widgets are affected so that user can quickly fix fieldnames. More graceful (or informative) way is appreciated :) Oops, the affected widget name is informed (it was autogenerated thus me overlooked) ! It' graceful enough :)

[MSEide-MSEgui-talk] The source editor: no underline char shown in comments written in italic font

2012-01-13 Thread IvankoB
(win-32). It feels quite strange - not seeing just typed. Even if it's a win-32 API fault (wrong font metric etc) anyway we must have an workaround. -- RSA(R) Conference 2012 Mar 27 - Feb 2 Save $400 by Jan. 27

[MSEide-MSEgui-talk] LookupBuffer: no Find() fucntion for *string types

2012-01-13 Thread IvankoB
the subj -- RSA(R) Conference 2012 Mar 27 - Feb 2 Save $400 by Jan. 27 Register now! http://p.sf.net/sfu/rsa-sfdev2dev2 ___ mseide-msegui-talk mailing list

[MSEide-MSEgui-talk] ftMemo field: SigSegv on aswidestring of typecast to widestring

2012-01-13 Thread IvankoB
seems to be in StrChr(). SQLite3, utf8 string field. If disallowed then more graceful exit - with exception etc ? -- RSA(R) Conference 2012 Mar 27 - Feb 2 Save $400 by Jan. 27 Register now!

Re: [MSEide-MSEgui-talk] F12 key pressed in win32 calls debugger: how to fix it ?

2012-03-27 Thread IvankoB
Martin, do You remember that ? Me look in the README and can't find. Needs a setting in registry. http://search.gmane.org/search.php?group=gmane.comp.ide.mseide.userquery=f12 Great thanx ! And it MUST be in the README :)

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 2.8.2, MSEgit 1.2

2012-04-02 Thread IvankoB
I do not plan to add it. Debugging MSEide in MSEide is normally done by experienced people and README.TXT should be as short as possible. Disagreed. The absence of this README item may disable coming those new experienced people since the issue solution is hard to find thus the people will

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 2.8.2, MSEgit 1.2

2012-04-02 Thread IvankoB
I do not plan to add it. Debugging MSEide in MSEide is normally done by experienced people and README.TXT should be as short as possible. A file like DEBUG.info ? -- This SF email is sponsosred by: Try Windows Azure

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 2.8.2, MSEgit 1.2

2012-04-04 Thread IvankoB
A file like DEBUG.info ? In the new DEBUG.txt, there're B chars at line ends (seen in win-32). See the attachment/attachment: B-chars.png-- Better than sec? Nothing is better than sec when it comes to monitoring Big

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 2.8.2, MSEgit 1.2

2012-04-08 Thread IvankoB
That would mean that the AMD shaders had very poor performance, and alltogether the shaders wouldn't even caom close to the performance of your main CPU. No, the test means that work of both 100% loaded CPUs may (on easily parallelized task) can be easily (13% load for AMD 20% load for

[MSEide-MSEgui-talk] The large project

2012-04-09 Thread IvankoB
Approx 6 subtasks. Complicated enough. With strict data security demands. Very tough terms - 1.5..2 months. And it seems that me'll have to program it. With MSEgui sure because the main demand is to be cross-platform from keyboard up to printer. PostgreSQL based, possibly with offline mode of

Re: [MSEide-MSEgui-talk] The large project

2012-04-09 Thread IvankoB
A big project in 1.5..2 months? I have a rule of thumb that a project must be basically running and the main problems must be solved in half of the development time. So you have 4 weeks for the development of a 100% working prototype. Not much. :-) It's a combination of PODPISKA (your

Re: [MSEide-MSEgui-talk] The large project

2012-04-09 Thread IvankoB
Then you need an encrypted localdataset log file? Though it'll only contain reference=readonly data (operational=writable data will always be remote), me think yes. The problem is to make easy to set up (via installer) on different OS by a regular user - encrypted loopback on LINUX,

Re: [MSEide-MSEgui-talk] The large project

2012-04-09 Thread IvankoB
I plan to add a cryptohandler property to tmsefilestream where encryption components can hook, a generalization of the cryptio functionality in msesockets. All msestreams inherit from tmsefilestream so encryption should be possible for all streams used in MSEgui. The encrypted storage is

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 2.8.2, MSEgit 1.2

2012-04-10 Thread IvankoB
AFAIK, only H264 files are such, the other formats aren't that in mind. But it seems that ArcSoft found a way :) Most (compressed, even lossy) video formats have synchronisation frames, which can be used to rebuild the following part without knowledge of the previous part. That's streamed

Re: [MSEide-MSEgui-talk] Bug in msebufdataset.pas

2012-04-12 Thread IvankoB
counting numbers are called cardinal, while numbering numbers (;) are called ordinal. In FPC, the cardinal is =0 (can really be counted on fingers) with twice as higher upper bound. -- For Developers, A Lot Can

Re: [MSEide-MSEgui-talk] Splitting OpenSSL bindings @IvankoB

2012-04-13 Thread IvankoB
I'd like to split the mopenssl.pas monster into separate units. What were the criteria for the different ifdefs? Especially what belongs to always loaded sslutils and what to X509_,EVP_...? To make the compiled unit (=exe) a bit smaller if only a set of cypher is planned to use. The

Re: [MSEide-MSEgui-talk] Splitting OpenSSL bindings @IvankoB

2012-04-13 Thread IvankoB
others are not. What is the criterium? They provide dependencies of other ifdefs or common dependencies -- For Developers, A Lot Can Happen In A Second. Boundary is the first to Know...and Tell You. Monitor Your

[MSEide-MSEgui-talk] IDE doesn't built (win32, fpc 2.6.0)

2012-04-15 Thread IvankoB
The build command : #!/bin/sh rem ppc386.exe apps\ide\mseide.pas -Fulib\common\* -B -Fulib\common\kernel\i386-win32 -Fi\lib\common\kernel -dmse_with_ifi rem msedirclear .\ echo // apps\ide\regcomponents.inc fpc -Mobjfpc -B apps\ide\mseide.pas -Fulib\common\*

[MSEide-MSEgui-talk] Estimated traffic difference between direct WEB DB connection ?

2012-04-17 Thread IvankoB
Me mean : - direct data are transferred remotely to tmsesqlqury then loaded into a local grid - WEB-connection retrieves same data and packs them into HTML table (a lot of parasite tags like TR/TD etc) The Q: how much traffic difference between these approaches for say 1000 records ? Does

Re: [MSEide-MSEgui-talk] IDE doesn't built (win32, fpc 2.6.0)

2012-04-17 Thread IvankoB
Really, calling tools\msedirclear .\ seems to fix the problem. To the README ? Can it be a good idea to include the msedirclear code into BUILD sequence ? -- Better than sec? Nothing is better than sec when it comes

Re: [MSEide-MSEgui-talk] IDE doesn't built (win32, fpc 2.6.0)

2012-04-18 Thread IvankoB
Not by default. FPC should fix the bugs in the compiler. You add the script yourself by 'Project'-'Options'-'Make'-'Command default'. This code if platform dependent. -- Better than sec? Nothing is better than sec

[MSEide-MSEgui-talk] Encrypted file streams

2012-04-18 Thread IvankoB
Me see them in recent GIT changes. Are they already working ? -- Better than sec? Nothing is better than sec when it comes to monitoring Big Data applications. Try Boundary one-second resolution app monitoring today.

Re: [MSEide-MSEgui-talk] Encrypted file streams

2012-04-20 Thread IvankoB
tsslcryptohandler is in tab 'NoGui'. There's no such on this tab page ;) -- For Developers, A Lot Can Happen In A Second. Boundary is the first to Know...and Tell You. Monitor Your Applications in Ultra-Fine

Re: [MSEide-MSEgui-talk] Encrypted file streams

2012-04-20 Thread IvankoB
Ready for testing, git master 68b8f038caa0d32696bf5ca54e5210a052fbca2a. tsslcryptohandler is in tab 'NoGui'. If easy, how about the idea about to use tsslcryptohandler for connection encrypting (AFAIK, FB PostgSQL) so that to avoid using middle-ware like OpenVPN, Stunnel and to manage

Re: [MSEide-MSEgui-talk] Breaking changes in FPC 2.6.1

2012-04-27 Thread IvankoB
Hi, There are breaking changes in FPC fixes_2_6. MSEide+MSEgui does not support FPC 2.6.1 anymore, please use 2.6.0 instead. http://www.mail-archive.com/fpc-devel%40lists.freepascal.org/msg25865.html It seems Graeme and me are the only persons who don't like breaking changes in fixes

Re: [MSEide-MSEgui-talk] Breaking changes in FPC 2.6.1

2012-04-27 Thread IvankoB
But it's difficult to object to the below Your statement: -- Please change TDataset.Bookmark to tbytes = array of byte if you absolutely need to change it in fixes_2_6 so we have a bookmark type with automatic memory management again. PS: If the main advantage of FPC over C/C++

Re: [MSEide-MSEgui-talk] New LINUX distros are funny :)

2012-05-11 Thread IvankoB
FreeBSD: fast, clear standards, consistent and very stable. Not to mention the absolute must-have ZFS file system support - I don't trust my data on anything else any more. Unfortunately, it lacks a lot of important software (incl networking system administration [VPN daemons,..])

[MSEide-MSEgui-talk] TMainMenu.menu.font change doesn't work both in runtime design-time

2012-05-14 Thread IvankoB
But fontactive does. -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint

[MSEide-MSEgui-talk] IDE's file monitor: to exclude deleted filees from tracking

2012-05-14 Thread IvankoB
otherwise annoying messages on building project etc. -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond.

[MSEide-MSEgui-talk] To README.devel

2012-05-14 Thread IvankoB
IMPORTANT: if AVAST antivirus is active then fpc.exe gdb.exe {your_project}.exe MUST be added to behavioral filter exclusions otherwise a deadlock of desktop may happen on running the project from within IDE! --

Re: [MSEide-MSEgui-talk] IDE's file monitor: to exclude deleted filees from tracking

2012-05-14 Thread IvankoB
On Monday 14 May 2012 09:31:54 IvankoB wrote: otherwise annoying messages on building project etc. I don't understand. Example? Me deleted wrong form files by TotalCommander (from file system) outside the IDE (sure forgot to exclude them from the project) - the IDE detected that bombed

[MSEide-MSEgui-talk] A nice GIT feature : project-wide exclusion list - .git/info/exclude

2012-05-14 Thread IvankoB
For instance: # git ls-files --others --exclude-from=.git/info/exclude # Lines that start with '#' are comments. # For a project mostly in C, the following would be a good set of # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ *.exe *.a *.o

Re: [MSEide-MSEgui-talk] IDE's file monitor: to exclude deleted filees from tracking

2012-05-14 Thread IvankoB
Me deleted wrong form files by TotalCommander (from file system) outside the IDE (sure forgot to exclude them from the project) - the IDE detected that bombed with complains :) What means exclude them from the project? Just an assumption. Me don't know how to do it. Maybe just to close

Re: [MSEide-MSEgui-talk] A nice GIT feature : project-wide exclusion list - .git/info/exclude

2012-05-14 Thread IvankoB
Do you know the .gitignore file? Project wide too ? What for this doubling.. -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how

Re: [MSEide-MSEgui-talk] A nice GIT feature : project-wide exclusion list - .git/info/exclude

2012-05-14 Thread IvankoB
Yup, on client side especially on Windows where OpenSSH does not request passwords for private keys from pipes. Win32's SSH is a nightmare too. It requires key path to be ANSI no-space as long as still requires it to be user home directory which is space-containing non-latin at me. The

Re: [MSEide-MSEgui-talk] TMainMenu.menu.font change doesn't work both in runtime design-time

2012-05-14 Thread IvankoB
But fontactive does. Please try again with git master 88894476637118ed424b75f9bc461c97f8825fef. Fixed, thanx ! -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and

[MSEide-MSEgui-talk] TMainMenu: for top-level items [forming horiz. line], assigned TActions don't work

2012-05-15 Thread IvankoB
For inner subitems, everything is OK. -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will

Re: [MSEide-MSEgui-talk] TMainMenu: for top-level items [forming horiz. line], assigned TActions don't work

2012-05-15 Thread IvankoB
Works for me. Even creating a simple form via Application.CreateForm ? At me, it only splashes. -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape

Re: [MSEide-MSEgui-talk] A nice GIT feature : project-wide exclusion list - .git/info/exclude

2012-05-16 Thread IvankoB
E:\Programme\Git\.ssh GIT ignores it unless directed to use. -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can

Re: [MSEide-MSEgui-talk] TMainMenu: for top-level items [forming horiz. line], assigned TActions don't work

2012-05-16 Thread IvankoB
No testcase - no fix. Done. Seacrh the created simple form behind the main one. Oops, forgot to mention that the previous message contains a archived testcase. -- Live Security Virtual Conference Exclusive live

[MSEide-MSEgui-talk] HTTP dir listing file downloading ?

2012-05-19 Thread IvankoB
Any suggestions for FPC MSEGUI ? -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will

Re: [MSEide-MSEgui-talk] Propose new procedure for play sound in showmessage

2012-05-28 Thread IvankoB
function showmessage(const actionbefore: notifyeventty; const atext: msestring; const caption: msestring = ''): modalresultty; [...] What is the advantage of this compared with implementing your own specialised showmessage function for example (not tested) type soundty =

Re: [MSEide-MSEgui-talk] Propose new procedure for play sound in showmessage

2012-05-28 Thread IvankoB
Can MSEgui play sounds w/o LIBPULSEAUDIO (doesn't work in winNT6+) ? There is no MSEgui sound interface component appart from taudioout which is based on pulseaudio ATM. Please use the sound library of your choice. Martin Oops, PulseAudio has been highly upgraded :

Re: [MSEide-MSEgui-talk] Propose new procedure for play sound in showmessage

2012-05-28 Thread IvankoB
Win32 support has also been upgraded (v1.1) http://www.freedesktop.org/wiki/Software/PulseAudio/Ports/Windows/Support -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and

Re: [MSEide-MSEgui-talk] MSEgit, SSH_ASKPASS on windows

2012-06-09 Thread IvankoB
Quick dirty -- to allow showing GIT console window as long as SSH password is being entered. How? There is no attached windows console. There're CygWin, GitBash, MSVC++ etc win-32 console implementations. -- Live

Re: [MSEide-MSEgui-talk] MSEgit, SSH_ASKPASS on windows

2012-06-09 Thread IvankoB
Unlocking the keys by MSEgit is unsafe, too complicated and environment dependent. STUNNEL (both LINUX win-32 versions) does the unlock somehow. -- Live Security Virtual Conference Exclusive live event will cover all

[MSEide-MSEgui-talk] Application.terminated:=true doesn't fire OnTerminateQuery

2012-06-16 Thread IvankoB
As designed ? (Application.terminate fires this event) -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond.

[MSEide-MSEgui-talk] Does somebody know how to disable parasite info in the messages ?

2012-06-16 Thread IvankoB
Reclaims, advertisements etc. (for instance, OPERA NNTP client) -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can

Re: [MSEide-MSEgui-talk] IDE hangs in winXP

2012-06-18 Thread IvankoB
Please send the *_mfm.pas files too, the msedirclear.cmd is not reliable. It seems it does not call form2pas if there are no files to delete. The testcase does not compile because of missing -Fu.. for needed units mt1inputform,raddrinputform... . After fixing -Fu.. and creating the *_mfm.pas

  1   2   3   >