Re: [MSEide-MSEgui-talk] website links

2011-12-16 Thread Patrick
> > I just found the website recently myself and signed up for berlios mailing > list, only to find out that berlios is not used any more. Then I had to > hunt down information on where the new mailing list was. I also tried the > news gridsky server and was confused. > > I could update the links

[MSEide-MSEgui-talk] Website updates

2011-12-16 Thread Patrick
I have updated the website "Download" page. Feedback is welcome. The "Forum" link is being replaced with a "MSE Talk" link. Hopefully this will make it easier to get started using this software. -- Learn Windows Azur

[MSEide-MSEgui-talk] website groups: MSE Installer, OSPrinter, Repaz

2011-12-20 Thread Patrick
The groups module used by our website is not longer supported by Drupal (our website CMS). It has a security flaw that has not been fixed by the maintainer. I would like to replace / upgrade the groups moduel. Does anyone use the groups? I don't see any active / current postings in the groups.

[MSEide-MSEgui-talk] Survey

2011-12-20 Thread Patrick
I would like to set up a survey to get some information about the people using this software. I have the following questions for the survey. If you can think of something else that might be interesting, let me know. name: first / last / optional sex:male / female age:

[MSEide-MSEgui-talk] postgresql first time usage

2011-12-30 Thread Patrick
I am learning how to use a postgresql database. I can read / write the database via sql statements. I would like to use a tmsesqlquery that has parameters. So far I have not had any success. Is there an example somewhere of what I need to construct / do to successfully use a parametized query.

Re: [MSEide-MSEgui-talk] postgresql first time usage

2011-12-30 Thread Patrick
Getting closer. The following statement works with a postgressql database with the params fields set. Insert into messages (touserid, fromuserid, created, message, replytomessageid) values ($1, $2, $3, $4, $5); But this does not work with a mysql database. Insert into messages (touserid, fr

Re: [MSEide-MSEgui-talk] postgresql first time usage

2011-12-30 Thread Patrick
I will try the sqlresult component. Can the params.count field be manipulated in program code? If so, how? -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resource

Re: [MSEide-MSEgui-talk] postgresql first time usage

2011-12-30 Thread Patrick
> Set .sql to > " > insert into messages (touserid, fromuserid, created, message, > replytomessageid) > values (:touserid, :fromuserid, :created, :message, :replytomessageid); > " So after I set the sql statement of the sqlresult component, how do I execute it? Do I set active := true; Or do

Re: [MSEide-MSEgui-talk] postgresql first time usage

2011-12-31 Thread Patrick
> Set the parameter values then call tsqlstatement.execute(). > Using a sqlresult named rsltmessage I tried rsltmessage.sql.execute(); and got this error: main.pas(1463,7) Error: identifier idents no member "execute" I assumed that is what you meant by tsqlstatement.execute(). But, trying r

Re: [MSEide-MSEgui-talk] postgresql first time usage

2011-12-31 Thread Patrick
Looking at the source code for msesqlresult I see that "execute" is a protected method. Is ite meant to be "public"? -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT

Re: [MSEide-MSEgui-talk] postgresql first time usage

2011-12-31 Thread Patrick
. > > > tsqlstatement <> tsqlresult. Use tsqlstatement for queries which don't return > a result, use tsqlresult for queries which return a resultset but don't need > to be scrollable, use tmsesqlquery if the resultset must be scrollable. > Finally, a clear and concise statement as to how / whe

[MSEide-MSEgui-talk] text file

2012-01-02 Thread Patrick
What do you use to read a text file? Is there an example? Thank you. -- 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

Re: [MSEide-MSEgui-talk] text file

2012-01-02 Thread Patrick
I'll look at the msestream.pas source. What I want is a basic open the file repeat read a text line process the line until eof close the file Is the msestream object on the palette somewhere? -- Ridiculously eas

Re: [MSEide-MSEgui-talk] About survey in msegui.org

2012-01-11 Thread patrick
You should be logged in to take the survey. I could set it up to be available to unregistered users. I don't know if that would give bad results or not. If you are using mseide are you registered at the msegui.org website? Would you prefer to take the survey without registering a username at t

[MSEide-MSEgui-talk] request for help

2012-01-15 Thread Patrick
If you are a user of the MSEide+MSEgui software please visit our website at www.msegui.org and take our usage survey. We would like to find out who is using the software and what the software is being used for. You do not have to be a registered user to take the survey. Click on the "Survey" lin

[MSEide-MSEgui-talk] mysql on 64 bit windows 7 premium

2012-01-18 Thread Patrick
I have an ap I developed on windows xp 32 bit. It runs fine. Mysql is installed on the same computer the app runs on. I have installed mysql 64 bit on a winedows 7 premium system. When I try to run the app i get the following error message Could not load mysql library. Library "libmysql.dll"

Re: [MSEide-MSEgui-talk] mysql on 64 bit windows 7 premium

2012-01-18 Thread Patrick
It is an msegui app. Install the mysql.dll where? -- Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoi

Re: [MSEide-MSEgui-talk] mysql on 64 bit windows 7 premium

2012-01-18 Thread Patrick
on my windows xp systems, how does the connection find / load libmysql.dll? Is it in the path? -- Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft develope

Re: [MSEide-MSEgui-talk] mysql on 64 bit windows 7 premium

2012-01-18 Thread Patrick
I uninstalled the 64 bit version and installed the 32 bit version. Everything works now. After some more searching once it was fixed I think the path environment variable did not get set correctly in the 64 bit version. But I will not worry about it now as it is working.

[MSEide-MSEgui-talk] make my app multi language

2012-01-19 Thread Patrick
Can someone provide me with links to info / tutorials on how to make my app multi language capable? Thank you. -- Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Mi

Re: [MSEide-MSEgui-talk] make my app multi language

2012-01-19 Thread Patrick
Martin Schreiber writes: > > > One option is to use MSEi18n (tools/i18n), an example is in apps/i18ndemo, > see > README.TXT. > I ran the i18ndemo but got an error message Can not load langunit "libi18ndemo_de.so": no such file or directory or Can not load langunit "libi18ndemo_fr.so": ..

Re: [MSEide-MSEgui-talk] make my app multi language

2012-01-19 Thread Patrick
I did these steps 2 times but got the same error. I see a main.rst file created. Am I supposed to provide the german and french translation strings? Where do they come from? -- Keep Your Developer Skills Current with L

Re: [MSEide-MSEgui-talk] make my app multi language

2012-01-19 Thread Patrick
So the answer is yes, I have to enter the translate strings into the i18n project. Are there instructions somewhere on how the i18ndemo and i18n relate to each other? I would have never figured this out by myself. I can add info on this to the website. ---

Re: [MSEide-MSEgui-talk] make my app multi language

2012-01-19 Thread Patrick
> We must find out why the steps in README.TXT don't work for you. > I did another download of the mseide/gui source just now. I do NOT see any README.TXT file in the i18n folders!!! -- Keep Your Developer Skills Cur

Re: [MSEide-MSEgui-talk] make my app multi language

2012-01-19 Thread Patrick
Well I did get it to finally work. But I don't know if I want to go thru all that again. I will do some searches and study for a bit before I try again. -- Keep Your Developer Skills Current with LearnDevNow! The most

Re: [MSEide-MSEgui-talk] Off topic - kiosk

2012-01-31 Thread patrick
Do a search on "linux kiosk" and go from there. -- Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQ

Re: [MSEide-MSEgui-talk] Off topic - kiosk

2012-01-31 Thread patrick
Yes, I was pretty sure you had done that. But you did not say it, so I did not say it either. I would guess (as I have not done any kiosk software) that kiosk software is usually one of a kind software. The base is there but then what do you add to it. As an open source or free project you g

[MSEide-MSEgui-talk] tstringedit created in program code

2012-02-06 Thread Patrick
I create a tstringedit with the following code: seValue := tstringedit.create (self); seValue.left := 40; seValue.Top := 20; seValue.width := 60; seValue.height := 24; seValue.tag := 1000; seValue.color := cl_yellow; // so I can see it on the form tpgContactPerson

Re: [MSEide-MSEgui-talk] tstringedit created in program code

2012-02-06 Thread Patrick
After some more checking, it seems that the frame is not created. Should it be created by default? If now, how do I create it (in code)? -- Try before you buy = See our experts in action! The most comprehensive online

Re: [MSEide-MSEgui-talk] tstringedit created in program code

2012-02-06 Thread Patrick
Works great. Thanks. -- Try before you buy = See our experts in action! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, M

[MSEide-MSEgui-talk] tmemoedit created in program code

2012-02-09 Thread Patrick
The same problem as "tstringedit created in program code". I call the createframe method but it still errors out. Segmentation fault in editwidgets/msedataedits.pas at line 2889. -- Virtualization & Cloud Management U

Re: [MSEide-MSEgui-talk] tmemoedit created in program code

2012-02-09 Thread Patrick
My mistake. I was NOT calling the createframe method. It DOES work when calling the createframe method for the memoedit. Your call if you want to default the createframe method. -- Virtualization & Cloud Management U

Re: [MSEide-MSEgui-talk] tmemoedit created in program code

2012-02-09 Thread Patrick
> Did you try the new .createandinit(,) call? > Not yet. I will get the code from sourceforge later. I don't use gitmaster if that will make a difference. -- Virtualization & Cloud Management Using Capacity Plannin

[MSEide-MSEgui-talk] safely delete created widget

2012-02-09 Thread Patrick
After I am done using a component created with tstringedit.create (self,tpgContactGeneral); How do I safely delete it? Is there a twidget.delete??? method? -- Virtualization & Cloud Management Using Capacity Planning C

[MSEide-MSEgui-talk] tsqlstaement access error.

2012-02-10 Thread Patrick
create a new project from template. add a button to the form and set its onexecute handler. in the onexecute proecdure add a tsqlstatement variable. add a tsqlstatementvariable.create (self) statement. run the program and click the button. I get an access error. -

Re: [MSEide-MSEgui-talk] tsqlstaement access error.

2012-02-10 Thread Patrick
> Does > > sInsert:= tsqlstatement.create (self); > > produce the access error too ? > No. That works. So why does it work your way and not the way I was doing it? -- Virtualization & Cloud Management Using Capa

Re: [MSEide-MSEgui-talk] tsqlstaement access error.

2012-02-10 Thread Patrick
After checking "very" closely other parts of my program that create components, I see where I was going wrong. It looked like it was correct but wasn't. Can't see the forest, too many trees in the way. -- Virtualizati

[MSEide-MSEgui-talk] stringgrid

2012-02-11 Thread Patrick
I cannot remember how to access the current selected stringgrid.datacols index. I cannot find it in any of my previous programs and I cannot find it by looking at the sourcecode for the string grid. Cany someone please tell me how to get it? myindex := mystringgrid.datacols.?? Thank you.

Re: [MSEide-MSEgui-talk] stringgrid

2012-02-11 Thread Patrick
Martin Schreiber writes: > > > > myindex := mystringgrid.datacols.?? > > > myindex := mystringgrid.col; > I may not have been totally clear in my request. I want the row index. Is .col the column index? -- Virtu

Re: [MSEide-MSEgui-talk] stringgrid

2012-02-11 Thread Patrick
>From your answer, I should just guess that stringgrid.row will be the current row. Corrent? -- Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use of virtualization - but cloud computing

[MSEide-MSEgui-talk] oe_readonly

2012-02-12 Thread Patrick
I want to set the widgts.optionsedit [oe_readonly] in program code. But I cannot find where it is defined to include it on the uses statement. Where are the optionsedits defined? -- Virtualization & Cloud Management Usi

Re: [MSEide-MSEgui-talk] oe_readonly

2012-02-12 Thread Patrick
Thank you. -- Try before you buy = See our experts in action! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style A

[MSEide-MSEgui-talk] setting up git

2012-02-13 Thread Patrick
OK, so I am trying to set up git. I got it installed, did a git init and a git pull git://mseide-msegui.git.sourceforge.net/gitroot/mseide-msegui /mseide-msegu Now that it is here on my computer, how do I extract it to a folder on my comptuer? git what Any quick guides to git available? t

Re: [MSEide-MSEgui-talk] setting up git

2012-02-13 Thread Patrick
I am running debian squeeze. -- Try before you buy = See our experts in action! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MV

Re: [MSEide-MSEgui-talk] setting up git

2012-02-13 Thread Patrick
Getting a little farther. Trying to compile the version I got from git and got this formdesigner.pas(1286,12) Error: Incompatible types: got "TList" expected "TFPList" formdesigner.pas(1295,20) Error: Incompatible types: got "TFPList" expected "TList" formdesigner.pas(3310) Fatal: There were 2

Re: [MSEide-MSEgui-talk] setting up git

2012-02-13 Thread Patrick
My compile command is ppc386 -B -Fu/data/patrick/mseide-msegui/lib/common/* -Fu/data/patrick/mseide-msegui/lib/common/kernel/i386-linux -Fi/data/patrick/mseide-msegui/lib/common/kernel /data/patrick/mseide-msegui/apps/ide/mseide.pas

Re: [MSEide-MSEgui-talk] setting up git

2012-02-13 Thread Patrick
I got that figured out. Did you see my last post about the compile error? -- Try before you buy = See our experts in action! The most comprehensive online learning library for Microsoft developers is just $99.99! Vi

Re: [MSEide-MSEgui-talk] setting up git

2012-02-13 Thread Patrick
version info: Free Pascal Compiler version 2.4.0-2 [2010/02/20] for i386 Copyright (c) 1993-2009 by Florian Klaempfl -- Try before you buy = See our experts in action! The most comprehensive online learning library for M

Re: [MSEide-MSEgui-talk] setting up git

2012-02-13 Thread Patrick
I did an uninstall / purge of fpc on my debian system. I downloaded fpc version 2.6.0 from freepascal.org. did a compile as ppc386 -B -Fu/data/patrick/mseide-msegui/lib/common/* -Fu/data/patrick/mseide-msegui/lib/common/kernel/i386-linux -Fi/data/patrick/mseide-msegui/lib/common/kernel /data

Re: [MSEide-MSEgui-talk] setting up git

2012-02-13 Thread Patrick
Success Thank you. I have occassionaly seen posts from Martin referencing a git gui app. I assume that is something he created. Is it in the git repositroy somewhere? -- Try before you buy = See our experts in act

[MSEide-MSEgui-talk] createandinit

2012-02-13 Thread Patrick
Martin, I got git all set up and running. I got the current git source compiled and working. I used the component createandinit function and it worked. Thanks. -- Try before you buy = See our experts in action! The mo

[MSEide-MSEgui-talk] screen painting issue

2012-02-13 Thread Patrick
I have a screen that looks like this. 'heading' are stringdisplays and 'some text data' are stringedits. They are created in program code heading some text data heading some text data and long heading some text data and longer yet heading some text data and really really lon

Re: [MSEide-MSEgui-talk] screen painting issue

2012-02-13 Thread Patrick
Forget this one. Programming error. Bet you never heard that before. -- Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual

Re: [MSEide-MSEgui-talk] screen grid row colors

2012-02-16 Thread Patrick
> Do you know the properties tcustomgrid.rowcolors, tcustomgrid.rowcolorstate > and the column properties color, colorfocused, coloractive, colorselect, > rowcoloroffset, rowcoloroffsetselect and the flags co1_rowcolor, > co1_rowcoloractive, co1_rowcolorfocused in t*col.options1? I am trying t

Re: [MSEide-MSEgui-talk] screen grid row colors

2012-02-16 Thread Patrick
> Beause selected text <> selected cell and font background color <> cell color. > Got it. My interpretation of the colorselect was wrong. Got to remember text in a column row and column rows are different entities. --

[MSEide-MSEgui-talk] What event to use?

2012-03-05 Thread Patrick
I want to verify that my app's database is in sync with my program. I have a system table in a database with version, release numbers. My app also has constant values for version, release. I want to compare the database version / release to the app version / release. What event can / should I u

[MSEide-MSEgui-talk] link error

2012-05-21 Thread Patrick
Running debian squeeze I am traveling and copied the mseide-msegui folder to my laptop, Installed the 2.6.0 version of fpc. Assumed everything would work, but when I try to build/make my project I get the following error: /usr/bin/ld: cannot find -lX11 mseide.pas(66,1) Error: Error while linki

[MSEide-MSEgui-talk] stringgrid scrollbars

2012-07-05 Thread Patrick
I have a screengrid on a form. The screengrid is filled with dat from a database table. Some tables only have a few records and the grid does not have a vertical scrollbar. Some tables have a lot of records and the grid does haev a vertical scrollbar. Is there a way in program code to know if t

Re: [MSEide-MSEgui-talk] 64 bit

2012-07-08 Thread Patrick
I got the fpc 2.6.0 compiler installed. When trying to compile the mseide / msegui I get the following error: /usr/bin/ld: warning: link.res contains output sections; did you forget -T? /usr/bin/ld: skipping incompatible /usr/lib/crti.o when searching for /usr/lib/crti.o /usr/bin/ld: cannot find

Re: [MSEide-MSEgui-talk] imagelist is broken

2020-06-25 Thread Patrick
spare computer around (or want to dual boot linux/windows) and you have a windows 7 product key. Install windows 7 and then upgrade to windows 10 via the "windows media creation tool' availble from the microsoft download site. Patrick

[MSEide-MSEgui-talk] stringgrid multi select

2020-09-20 Thread Patrick
Hello, Has anyone used the multiselect options in a stringgrid? If so, what options are needed to make a multi selection? Thank you Patrick ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net https://lists.sourceforge.net

[MSEide-MSEgui-talk] tdropdownlistedit

2021-03-30 Thread Patrick
? -- Patrick Goupell Are you free? Find out at http://www.sedm.org/ Income taxes? Find out at http://www.whatistaxed.com ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mseide

Re: [MSEide-MSEgui-talk] tdropdownlistedit

2021-03-30 Thread Patrick
On 3/30/21 3:00 PM, Roland Chastain wrote: I see here this description about the option *deo_selectonly* : "don't allow entering arbitrary text" Isn't it what you look for? Thank you. _

Re: [MSEide-MSEgui-talk] Answer to msegui Russian forum to dyamically create a frame.

2021-03-30 Thread Patrick
e frame and face are created you can then manipulate their properties. Patrick ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Re: [MSEide-MSEgui-talk] Answer to msegui Russian forum to dyamically create a frame.

2021-03-30 Thread Patrick
On 3/30/21 5:06 PM, fredvs wrote: Re-hello Pat Ooops you write dynedit.face := tface.createface; But with this it refuse to compile here: main.pas(44,25) Error: identifier idents no member "createface" Look at it again carefully. Here is the comple program: implementation uses   mai

Re: [MSEide-MSEgui-talk] MSEgui and Radeon graphics card.

2021-03-31 Thread Patrick
Did you have this with previous version of MSEgui (version 4.6 of Martin) ? Did not happen with a prior version of matin's release.  Could have happened when I upgraded from Debian Stretch to Buster or with an upgrade of mseide.  I don't know exactly when it happened. May I ask you if yo

Re: [MSEide-MSEgui-talk] MSEgui and Radeon graphics card.

2021-03-31 Thread Patrick
On 3/31/21 9:24 AM, fredvs wrote: Hello Pat. Sorry to annoy you once again, but could you try the binary of MSEide included in attachment? I think the previous was not ok. mseide.zip Thanks. Fre;D Success. Did you make

Re: [MSEide-MSEgui-talk] MSEgui and Radeon graphics card.

2021-03-31 Thread Patrick
By the way do you know the difference to set bmo_graymask vs bmo_colormask (apart to fix the things)? I will commit the fixes when you agree. Fre;D I don't know much about the inner workings of mseide, so cannot say anything about what the masks do. You can commit whenever you like.

Re: [MSEide-MSEgui-talk] MSEgui and Radeon graphics card.

2021-03-31 Thread Patrick
On 3/31/21 1:05 PM, fredvs wrote: Re-hello Pat. OK, commited the fixes ( can do a "reverse" if problems ). Just re-compile mseide and it should be ok. I cross my fingers. Fre;D Pulled the fixes to my systeman recompiled. everyting ok. ___ m

Re: [MSEide-MSEgui-talk] component color not correct

2021-04-03 Thread Patrick
Oops!! I forgot to clean  up the testprj folder before sending it. Sorry for the big size. ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Re: [MSEide-MSEgui-talk] component color not correct

2021-04-03 Thread Patrick
On 4/3/21 4:05 PM, fredvs wrote: Hello Pat. Sorry for the big size. Huh, here I only see 0 attachment of 0 bite. The original post is sitting in the queue for the moderator.  I will assume that is Martin so it will never be released. I am attaching the test project only with the original

Re: [MSEide-MSEgui-talk] component color not correct

2021-04-03 Thread Patrick
at some point Martin changed something.  This is a project I have not touched in over 2 years. I will update my project to reflect the changes. Patrick ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net https://lists.sourcefor

Re: [MSEide-MSEgui-talk] component color not correct

2021-04-03 Thread Patrick
On 4/3/21 6:04 PM, fredvs wrote: So at some point Martin changed something. What I am totally sure is that nothing was changed concerned this in commits done after Martin. Fre;D I did not say you did it. I said something Martin changed. ___

Re: [MSEide-MSEgui-talk] MSEgui documentation generated with PasDoc

2021-04-09 Thread Patrick
to be able to quickly distinguish individual words. Patrick ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Re: [MSEide-MSEgui-talk] Status of MSELang

2021-04-17 Thread Patrick
ng. They would be the best bet to take mselang forward imho. Patrick ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Re: [MSEide-MSEgui-talk] tmsesql

2021-05-03 Thread Patrick
On 5/3/21 10:00 AM, mohamed hamza wrote: Hi there,    I  just installed mseide v5.2 with free pascal 3.2.  I have some problems with it. Please try the test.prj. In the main.mfm file, the 'size' property has changed / been renamed. open the main.mfm form if it is not open.  (opening it w

Re: [MSEide-MSEgui-talk] tmsesql

2021-05-03 Thread Patrick
The main.mfm form should show.  You may get further error messages.  Read them and update as needed. You will also have to set a database (with needed tables and data)  for the connections component. Patrick ___ mseide-msegui-talk mailing

[MSEide-MSEgui-talk] postgresql connection component

2011-11-23 Thread Patrick Goupell
running on its default port of 5432. -- Patrick Goupell Income taxes? See this http://www.truthattack.org or this http://www.whatistaxed.com -- All the data continuously generated in your IT infrastructure contains a

Re: [MSEide-MSEgui-talk] postgresql connection component

2011-11-23 Thread Patrick Goupell
Thanks, I will give that a try. On 11/23/2011 09:41 AM, Martin Schreiber wrote: On Wednesday 23 November 2011 14.42:01 Patrick Goupell wrote: > The postgresql connection component does not have a port number attribute. > > The mysql connection does have a port number attribute

[MSEide-MSEgui-talk] mysql / postgresql

2011-11-24 Thread Patrick Goupell
? -- Patrick Goupell Income taxes? See this http://www.truthattack.org or this http://www.whatistaxed.com -- All the data continuously generated in your IT infrastructure contains a definitive record of customers

Re: [MSEide-MSEgui-talk] mysql / postgresql

2011-11-24 Thread Patrick Goupell
On 11/24/2011 09:10 AM, Martin Schreiber wrote: > On Thursday 24 November 2011 14:29:39 Patrick Goupell wrote: > >> I have an mysql app that works. Does selects, inserts, deletes without >> problems. >> >> I am converting to use a postgresql database. >> &

Re: [MSEide-MSEgui-talk] mysql / postgresql

2011-11-24 Thread Patrick Goupell
> > the transaction.commit () has seemed to resolve the problem. -- Patrick Goupell Income taxes? See this http://www.truthattack.org or this http://www.whatistaxed.com -- All the data continuously generated in you

[MSEide-MSEgui-talk] calendardate and datetime components

2011-11-26 Thread Patrick Goupell
the fields to empty / null. How do I do that? -- Patrick Goupell Income taxes? See this http://www.truthattack.org or this http://www.whatistaxed.com -- All the data continuously generated in your IT infrastructure

[MSEide-MSEgui-talk] Just curious

2011-11-27 Thread Patrick Goupell
k you. -- Patrick Goupell Income taxes? See this http://www.truthattack.org or this http://www.whatistaxed.com -- All the data continuously generated in your IT infrastructure contains a definitive record of cust

[MSEide-MSEgui-talk] compiling for windows

2011-11-30 Thread Patrick Goupell
e for windows. What are they? Are they documented somewhere? Thank you. -- Patrick Goupell Income taxes? See this http://www.truthattack.org or this http://www.whatistaxed.com -- All the data continuously generated in yo

Re: [MSEide-MSEgui-talk] compiling for windows

2011-11-30 Thread Patrick Goupell
correct as to used units - check it > with a small test FPC project > > 2011/12/1, Patrick Goupell: > >> I am on a debian squeeze system and have an app that I want to see how >> it looks in windows. >> >> I changed the target under the Settings menu option but g

Re: [MSEide-MSEgui-talk] compiling for windows

2011-12-01 Thread Patrick Goupell
i on Windows and compile >> there. >> > This tends to be the easier setup indeed. Simply use VirtualBox with a > Windows install. > > > I will also try a windows setup to comple it. -- Patrick Go

Re: [MSEide-MSEgui-talk] compiling for windows

2011-12-01 Thread Patrick Goupell
Thank you. I will give it a try. On 12/01/2011 08:04 AM, Graeme Geldenhuys wrote: On 1 December 2011 14:28, Patrick Goupell wrote: Do you have a link to the instructions you followed. http://wiki.freepascal.org/Cross_compiling_for_Win32_under_Linux I also attached the

Re: [MSEide-MSEgui-talk] compiling for windows

2011-12-01 Thread Patrick Goupell
at least I am making some progress. Any suggestions on how to troubleshoot the problem? -- Patrick Goupell Income taxes? See this http://www.truthattack.org or this http://www.whatistaxed.com -- All the data

Re: [MSEide-MSEgui-talk] compiling for windows

2011-12-01 Thread Patrick Goupell
On 12/01/2011 12:12 PM, Patrick Goupell wrote: > I download and installed the free pascal compiler on windows xp. > > Downloaded and installed the windows installer of msegui. > > Copied my project folder from linux to wineows. > > Started msegui and opened my project. >

Re: [MSEide-MSEgui-talk] compiling for windows

2011-12-01 Thread Patrick Goupell
On 12/01/2011 12:21 PM, Patrick Goupell wrote: > > On 12/01/2011 12:12 PM, Patrick Goupell wrote: > >> I download and installed the free pascal compiler on windows xp. >> >> Downloaded and installed the windows installer of msegui. >> >> Copied

Re: [MSEide-MSEgui-talk] compiling for windows

2011-12-01 Thread Patrick Goupell
On 12/01/2011 12:32 PM, Patrick Goupell wrote: > > On 12/01/2011 12:21 PM, Patrick Goupell wrote: > >> On 12/01/2011 12:12 PM, Patrick Goupell wrote: >> >> >>> I download and installed the free pascal compiler on windows xp. >>> >>

Re: [MSEide-MSEgui-talk] compiling for windows

2011-12-01 Thread Patrick Goupell
y copied the current msegui source to windows and compiled it. I then built and tested my app. It works. Connects to the mysql database server and retrieves data. I will give the cross compile method a try later. For now this method works and is acceptable to me. -- Patrick Goupell Income

Re: [MSEide-MSEgui-talk] website links

2011-12-12 Thread Patrick Goupell
> I just found the website recently myself and signed up for berlios mailing > list, only to find out that berlios is not used any more. Then I had to > hunt down information on where the new mailing list was. I also tried the > news gridsky server and was confused. > > I could update the links fo

Re: [MSEide-MSEgui-talk] website links

2011-12-13 Thread Patrick Goupell
I am registered. User name Patrick. -- Systems Optimization Self Assessment Improve efficiency and utilization of IT resources. Drive out cost and improve service delivery. Take 5 minutes to use this Systems

Re: [MSEide-MSEgui-talk] website links

2011-12-13 Thread Patrick Goupell
ptimization > Self Assessment. http://www.accelacomm.com/jaw/sdnl/114/51450054/ > ___ > mseide-msegui-talk mailing list > mseide-msegui-talk@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk > > &

Re: [MSEide-MSEgui-talk] website links

2011-12-13 Thread Patrick Goupell
> mseide-msegui-talk mailing list > mseide-msegui-talk@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk > > > -- Patrick Goupell Income taxes? See this http://www

Re: [MSEide-MSEgui-talk] website links

2011-12-14 Thread Patrick Goupell
acing it? What are its payoffs and pitfalls? > http://www.accelacomm.com/jaw/sdnl/114/51425149/ > ___ > mseide-msegui-talk mailing list > mseide-msegui-talk@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/mseide-msegui

Re: [MSEide-MSEgui-talk] website links

2011-12-14 Thread Patrick Goupell
display without error messages. On 12/14/2011 10:20 AM, wahono sri wrote: > On 14 December 2011 19:20, Patrick Goupell wrote: > >> The "revision" module did not install correctly and was getting a "page >> not found" error. >> >> I backed it out

[MSEide-MSEgui-talk] multi select

2012-02-20 Thread Patrick Goupell
Is there an example of a stringgrid with multi select enabled? I have set the stringgrid column option multiselect to true and it does not multi select. Do I need to do something else to get multiselect? -- Patrick Goupell Income taxes? See this http://www.truthattack.org or this http

  1   2   3   4   5   6   7   >