Jump to content

Guest

Members
  • Posts

    2514
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Guest

  1. Message from: "Medkyl"

     

    Hello

    I deploy an application on Windows 2008 IIS 7

     

    Error :

    An Exception has occured in application:

    Unable to create file

    "C:\inetpub\test\cache\index\Pwq6YXH9RNsjpZZ\app_main_icon.png". The

    specified path is not found

    Restart application

     

    thank you for your help

     

    .

     

  2. Message from: "Farshad Mohajeri"

     

    "Junior/RO" wrote in message

    news:jmT9$$V%23LHA.3152@anaxagvs227...

    > Farshad Mohajeri escreveu:

    >

    >>

    >> "Junior/RO" wrote in message

    >> news:R2PPoBR%23LHA.3976@anaxagvs227...

    >> > Farshad Mohajeri escreveu:

    >> >

    >> > > Currently uniGUI component library is being redesigned for new core

    >> > > in 0.85.0.

    >> >

    >> > Farshad, do you have a testing process?

    >>

    >> Testing in what regards?

    >

    > Some kind of automated gui testing. To test regressions, mainly.

     

    Yes, there are tests to ensure all gui controls work as expected.

     

     

    .

     

  3. Message from: "Farshad Mohajeri"

     

    "Francisco FJTROOPER" wrote in message

    news:E0HzONm%23LHA.3152@anaxagvs227...

    > Hello, I use MyDac components to access MySql, Should I set to true

    > autocoinicialize? What's the use of autocoinitialize?

     

    CoInitialize must be called for threads with COM objects. MySQL isn't COM

    based so you shouldnt need it.

     

     

    .

     

  4. Message from: "Farshad Mohajeri"

     

    Tree with 2000 nodes? Seems lots of subnodes are there.

     

    It is better to assign the ImageIndex just after you create the node.

    I will test and try to improve the speed.

     

    "bettersoft" wrote in message

    news:%23S98jDO%23LHA.1984@anaxagvs227...

    > var iLen, ii, image: integer;

    > begin

    > image:=1;

    > iLen: = UniTreeView1.Items.Count;

    > for ii: = 1 to iLen do

    > begin

    > EmrUniTreeView.Items [ii-1]. ImageIndex: = image;

    > end;

    > end;

    >

    > The TreeView 5 layer nodes, a total of more than 2,000 nodes. All traverse

    > a node is very slow, to 10 minutes, I just change the node icon. Traversal

    > methods are no good? In Vcl in quickly.

    > And traversal, all nodes must be Expanded = True. Otherwise it will error.

    >

     

     

    .

     

  5. Message from: "Farshad Mohajeri"

     

    "Cristiano Testai" wrote in message

    news:9$IbHdI%23LHA.3976@anaxagvs227...

    >

    > Hi!

    >

    > I need an opinion and suggestion:

    >

    > What is the best way to query informations for the auxiliary tables in Web

    > applications?

    > In desktop applications i use an external form to search for information

    > on secondary tables. On the form i use an "Edit Search" that calls the

    > modal form search.

    > In Web, i still using a form helper to find the information or is better

    > to use DbLookup component?

    >

     

    Can you give a more specific example for this?

     

     

    .

     

  6. Message from: "ldb"

     

    You will normally use "autocoinicialize" to access the database via ADO

    or to use OLE / ActiveX objects .

    I thinks for mySQL is not needed

     

     

     

     

    Il 14/04/2011 07:17, Francisco FJTROOPER ha scritto:

    > Hello, I use MyDac components to access MySql, Should I set to true

    > autocoinicialize? What's the use of autocoinitialize?

    > Thxs very much

    > GOOD WORKKK!!!!

    >

     

    .

     

  7. Message from: "Francisco FJTROOPER"

     

    Hello, I use MyDac components to access MySql, Should I set to true

    autocoinicialize? What's the use of autocoinitialize?

    Thxs very much

    GOOD WORKKK!!!!

     

    --

     

    .

     

  8. Message from: "Junior/RO"

     

    Farshad Mohajeri escreveu:

     

    >

    > "Junior/RO" wrote in message news:R2PPoBR%23LHA.3976@anaxagvs227...

    > > Farshad Mohajeri escreveu:

    > >

    > > > Currently uniGUI component library is being redesigned for new core in 0.85.0.

    > >

    > > Farshad, do you have a testing process?

    >

    > Testing in what regards?

     

    Some kind of automated gui testing. To test regressions, mainly.

    .

     

  9. Message from: "Farshad Mohajeri"

     

    "Junior/RO" wrote in message

    news:R2PPoBR%23LHA.3976@anaxagvs227...

    > Farshad Mohajeri escreveu:

    >

    >> Currently uniGUI component library is being redesigned for new core in

    >> 0.85.0.

    >

    > Farshad, do you have a testing process?

     

    Testing in what regards?

     

     

    .

     

  10. Message from: "Farshad Mohajeri"

     

    Currently uniGUI component library is being redesigned for new core in =

    0.85.0. Converting some of the components are taking longer than =

    expected. Especially those with sub-childs such as PageControl, ToolBar, =

    DBGrid ans etc.=20

     

    I'm expecting one or two weeks from now until conversion is fully =

    completed. Until then I may not appear much in newsgroups and your posts =

    may remain unanswered. All posts are marked and eventually will be =

    replied.

     

    All these changes are done for sake of extensibility and scalability of =

    the library.

     

  11. Message from: "bettersoft"

     

    var iLen, ii, image: integer;

    begin

    image:=1;

    iLen: = UniTreeView1.Items.Count;

    for ii: = 1 to iLen do

    begin

    EmrUniTreeView.Items [ii-1]. ImageIndex: = image;

    end;

    end;

     

    The TreeView 5 layer nodes, a total of more than 2,000 nodes. All traverse a

    node is very slow, to 10 minutes, I just change the node icon. Traversal

    methods are no good? In Vcl in quickly.

    And traversal, all nodes must be Expanded = True. Otherwise it will error.

     

     

    .

     

  12. Message from: "Cristiano Testai"

     

    Hi!

     

    I need an opinion and suggestion:

     

    What is the best way to query informations for the auxiliary tables in Web

    applications?

    In desktop applications i use an external form to search for information on

    secondary tables. On the form i use an "Edit Search" that calls the modal

    form search.

    In Web, i still using a form helper to find the information or is better to

    use DbLookup component?

     

    Thanks!

     

    .

     

  13. Message from: "Farshad Mohajeri"

     

    "Jim Gallagher" wrote in message

    news:LEfN6t79LHA.3976@anaxagvs227...

    > Hi,

    >

    > I just installed UniGui and am very impressed with it, especially as a

    > beta product. I look forward to seeing the commercial license terms.

    >

    > How close is the linkage going to be with ExtJS? I saw features on

    > their web site that were very attractive (pivotgrid and some others)

    > that don't appear to be in UniGui as of now. Will more ExtJS

    > functionality be brought into UniGui, or is this conversion something

    > that an end-user of UniGui could attempt, without a massive learning

    > curve?

    >

     

    Hi Jim,

     

    Thanks for your interest in uniGUI.

     

    License terms will be announced around version 0.90.0.

     

    The new Ext JS you see in Sencha site is Ext JS 4 beta which will be

    released soon. Current version of uniGUI is based on Ext JS 3.3.0. uniGUI

    will eventually switch to Ext JS 4, but I can't say the exact version right

    now. It can be 1.0.0 or 1.1.0.

     

    With each new version uniGUI will contain more and more of existing Ext JS

    functionality.

     

    Regards,

    Farshad Mohajeri

     

     

    .

     

  14. Message from: "Jim Gallagher"

     

    Hi,

     

    I just installed UniGui and am very impressed with it, especially as a

    beta product. I look forward to seeing the commercial license terms.

     

    How close is the linkage going to be with ExtJS? I saw features on

    their web site that were very attractive (pivotgrid and some others)

    that don't appear to be in UniGui as of now. Will more ExtJS

    functionality be brought into UniGui, or is this conversion something

    that an end-user of UniGui could attempt, without a massive learning

    curve?

     

    Thanks,

     

    Jim

     

    --

     

    .

     

  15. Message from: "Farshad Mohajeri"

     

    "goodeboy" wrote in message

    news:J6pXjk59LHA.1984@anaxagvs227...

    > Create a new form, set the Name to uniform1

    > Add a new frame, set the Name to uniframe1

    > Uniframe1 loaded in uniform1

    > Create a new button in uniframe1 , click the button to open a new uniform2

    > How to use uniframe1 function in uniform2?

    >

     

    Do want to call a function which is defined in UniFrame1?

     

    You can't call a Frame directly. Tou can call the function of Frame instance

    that is created inside UniForm1.

     

     

    .

     

  16. Message from: "goodeboy"

     

    Create a new form, set the Name to uniform1

    Add a new frame, set the Name to uniframe1

    Uniframe1 loaded in uniform1

    Create a new button in uniframe1 , click the button to open a new uniform2

    How to use uniframe1 function in uniform2?

     

    Thanks

     

    "Farshad Mohajeri" дÈëÏûÏ¢ÐÂÎÅ:XZ%232F249LHA.3976@anaxagvs227...

    >

    > "goodeboy" wrote in message

    > news:Tmis2en9LHA.1980@anaxagvs227...

    >> In the uniform how to access or operate in the frame of the variable or

    >> control?

    >

    > Can you explain a bit more?

    >

     

     

    .

     

  17. Message from: "Cristiano Testai"

     

    I'm sorry.. Rebuild all and ok..

     

    --

    Atenciosamente,

    Cristiano Testai

    Developer Software Ltda.

     

    "Farshad Mohajeri" wrote in message

    news:WtVqr149LHA.3976@anaxagvs227...

    >

    > "Cristiano Testai" wrote in message

    > news:FKp56q49LHA.3152@anaxagvs227...

    >> Hi Farshad,

    >>

    >> I update the release 0.84.5(fmsoft_unigui_beta_0.84.5.836_setup.exe), but

    >> i not find UniDBDateTimePicker component.

    >> Any idea?

    >>

    >> Tks.

    >>

    >

    > Have you rebuilt all packages?

    >

     

    .

     

  18. Message from: "Farshad Mohajeri"

     

    "Cristiano Testai" wrote in message

    news:FKp56q49LHA.3152@anaxagvs227...

    > Hi Farshad,

    >

    > I update the release 0.84.5(fmsoft_unigui_beta_0.84.5.836_setup.exe), but

    > i not find UniDBDateTimePicker component.

    > Any idea?

    >

    > Tks.

    >

     

    Have you rebuilt all packages?

     

     

    .

     

  19. Message from: "ayweo"

     

    Thanks

     

    "Farshad Mohajeri" дÈëÏûÏ¢ news:8r8s4jh9LHA.3152@anaxagvs227...

     

     

    "ayweo" wrote in message

    news:ZlsWs5b9LHA.3152@anaxagvs227...

    > Hi

    > 1) I can set the number of rows UniDBGrid show it? The default is 25

    > lines?

     

    Yes, in UniDBGrid.WebOptions

     

    > 2) UniButton the default properties are not valid in the WEB. This is a

    > BUG?

     

    Default it not implemented for web

     

    .

     

  20. Message from: "Junior/RO"

     

    Farshad Mohajeri escreveu:

     

    > This was discussed a while ago. Technically speaking, I don't have much clue about how this can be done. I welcome all suggestions.

     

    Could you create a mechanism where every user gui event (keyboard + mouse) be replicated of on another session?

    .

     

×
×
  • Create New...