Jump to content

Guest

Members
  • Posts

    2514
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Guest

  1. Message from: "Farshad Mohajeri" http://www.embarcadero.com/products/delphi/64-bit Indeed it is good news for uniGUI.=20 One of the biggest concerns about uniGUI stateful servers is 32-bit = memory space. With increased number of sessions there is a chance to = fall short on available memory which in practice can't exceed 2 GB in a = 32-bit Delphi app. With introduction of 64-bit to Delphi apps such limitations do not apply = anymore and full server memory space can be occupied.
  2. Message from: "UniGui" Hi Farshad, In WebApplication with UniGui StandAlone Server mode,user can input something ,and update data to DB, if these use go/back of IE will cause to show incorrect information , How can I disable the function GO/BACK of IE? .
  3. Message from: "Farshad Mohajeri" BTW, what's your Delphi version? .
  4. Guest

    Aboout UniComoBox

    Message from: "Farshad Mohajeri" I'll test it. "UniGui" wrote in message news:5eCley18LHA.3976@anaxagvs227... > hoho,this's Code > Specifies the UNIDBCOMBOBOX1.datasource - > unimainmodule . > Oradatasource1.dataset - >unimainmodule.oraquery1 > > Then specifies the UNIDBCOMBOBOX DATAFIELD - - > ' STAFF_ID'; > > (UNIMAINmodule. ORAQUERY1. FIELDS [0]); > > In UNIFORM1. Unimainmodule CREAT,oraquery1 open; > > Runtime see effect is: in UniDBComboBox1 showed value of oraquery1.fields > [0] , then no longer able to click to pull down > > "Farshad Mohajeri" дÈëÏûÏ¢ news:TOqtEHt8LHA.3152@anaxagvs227... > > > "UniGui" wrote in message > news:VdaSiSi8LHA.3976@anaxagvs227... >> Hi,Farshad. >> Use UniDBComboBox, when after obtain data,I can't use the mouse to >> DragDown operation in IE. >> WHY? > > How do you "obtain data"? > .
  5. Message from: "Farshad Mohajeri" "Woodman" wrote in message news:IlkN9Hz8LHA.3976@anaxagvs227... > Hi,Farshad > > I'm from China.In UniDbGrid component,I set the CharSet to > GB2312_CHARSET, > and it displays correct in design time,but no display in run time. > > Why? How can I display Chinese in run time? > uniGUI uses utf-8 by default, so you don't need to change the font Charset.. Changing the font Charset has no effect in web mode. You must assign the proper Chinese title for each DBColumn. .
  6. Guest

    News Posts

    Message from: "Cristiano Testai" Hi Farshad! > I can't reproduce bug in test case. , > IIRC this issue was resolved in last release. Have you tested it with > 0.84.5 ? I had tested it with previous realease. Now i tested it with 0.84.5 and is ok. Tks! Cristiano Testai "Farshad Mohajeri" wrote in message news:3gEOeS77LHA.3976@anaxagvs227... > > "Cristiano Testai" >>>> 3) Possible bug after append method, example: There are two records in >>>> UniDBGrid. Is selected the first. When performing an Append the >>>> contents >>>> of the first column of the previously selected record is deleted. > > I can't reproduce bug in test case. , > IIRC this issue was resolved in last release. Have you tested it with > 0.84.5 ? > .
  7. Guest

    Aboout UniComoBox

    Message from: "UniGui" hoho,this's Code Specifies the UNIDBCOMBOBOX1.datasource - > unimainmodule . Oradatasource1.dataset - >unimainmodule.oraquery1 Then specifies the UNIDBCOMBOBOX DATAFIELD - - > ' STAFF_ID'; (UNIMAINmodule. ORAQUERY1. FIELDS [0]); In UNIFORM1. Unimainmodule CREAT,oraquery1 open; Runtime see effect is: in UniDBComboBox1 showed value of oraquery1.fields [0] , then no longer able to click to pull down "Farshad Mohajeri" дÈëÏûÏ¢ news:TOqtEHt8LHA.3152@anaxagvs227... "UniGui" wrote in message news:VdaSiSi8LHA.3976@anaxagvs227... > Hi,Farshad. > Use UniDBComboBox, when after obtain data,I can't use the mouse to > DragDown operation in IE. > WHY? How do you "obtain data"? .
  8. Message from: "Woodman" This is a multipart message in MIME format
  9. Guest

    Android API

    Message from: "Farshad Mohajeri" "Harry Rogers" wrote in message news:FBhBiB67LHA.3976@anaxagvs227... > Looking to the future (not very far) > > The Android scripting facility seems to be advancing rapidly. > e.g. http://code.google.com/p/android-scripting/wiki/Tutorials > This provides the ability for a scripting language to get and > manipulate particular sensors etc of an Android device. Javascript is > supported (via Rhino). There are some Javascript examples but most > seem to be python. > > How cool would it be to integrate barcode scanning, gSensor, compass > etc etc into UniGui applications running on Android tablets / phones ? > A set of 3rd party components can take care of this. > What mechansims already exist or could be on the cards to make this as > painless for the developer as (the already beuatifully so) current > UniGui ? It is possible to inherit custom components from existing Ext JS controls. Once the JavaScript part of the component is done, it can be integrated into ExtPascal and eventually into uniGUI. Somthing like what I did for UniCanvas component. .
  10. Message from: "Farshad Mohajeri" "Amri" wrote in message news:JeYq1Dm8LHA.3976@anaxagvs227... > Very much hope add TUniButtonEdit & TUniDBButtonEdit in Ver0.85! > It is so important/simple & fast in dbms system dev to uses. 0.85.0 will not contain new components. Request is already logged as #891 .
  11. Message from: "Antonio G. Gutierrez" Thanks, everything works beautifully "Farshad Mohajeri" escribió en el mensaje news:Q0CSQDt8LHA.1984@anaxagvs227... > In unit MainModule.pas add the following: > > procedure TUniMainModule.UniGUIMainModuleCreate(Sender: TObject); > begin > Theme:=UniServerModule.CurrentTheme; > end; > > "Antonio G. Gutierrez" wrote in message > news:eLt7lbs8LHA.1984@anaxagvs227... >> Hola, gracias por tu interés, a continuación te pongo el código que no me >> funciona para cambiar el Theme..el primero es el Uniserver y después el >> evento onclick para cambiar dicho theme. >> >> unit ServerModule; >> >> interface >> >> uses >> SysUtils, UniGUIServer, UniGUIMainModule; >> >> type >> TUniServerModule = class(TUniGUIServerModule) >> procedure UniGUIServerModuleCreate(Sender: TObject); >> private >> { Private declarations } >> protected >> procedure FirstInit; override; >> public >> { Public declarations } >> CurrentTheme : string; >> end; >> >> function UniServerModule: TUniServerModule; >> >> implementation >> >> {$R *.dfm} >> >> uses >> UniGUIVars; >> >> function UniServerModule: TUniServerModule; >> begin >> Result:=TUniServerModule(UniGUIServerInstance); >> end; >> >> procedure TUniServerModule.FirstInit; >> begin >> InitServerModule(Self); >> end; >> >> procedure TUniServerModule.UniGUIServerModuleCreate(Sender: TObject); >> begin >> >> UniServerModule.ServerRoot:=GetCurrentDir; >> UniServerModule.ExtRoot:=GetCurrentDir+'\ext-3.3.0'; >> >> >> end; >> >> initialization >> RegisterServerModuleClass(TUniServerModule); >> end. >> >> >> Now Onclick event. >> >> procedure TMainForm.bcambiartemaClick(Sender: TObject); >> begin >> >> UniServerModule.Lock; >> try >> UniServerModule.CurrentTheme:='classic'; >> finally >> UniServerModule.UnLock; >> end; >> TUniGUIApplication(UniApplication).Restart; >> >> >> >> >> end; >> >> >> >> >> >> >> >> >> >> "Farshad Mohajeri" escribió en el mensaje >> news:hCS6EJJ8LHA.3976@anaxagvs227... >>> If you've replicated same code in demo it should work. Can you paste >>> your code here? >>> >>> "Antonio G. Gutierrez" wrote in message >>> news:QujFJXD8LHA.3976@anaxagvs227... >>>> Greetings, I tried to change the Theme to choose their means by the >>>> user, so I follow the demo and megademo fishfact and not make the >>>> change .. any suggestions? >>>> >>> >>> >> >> > > .
  12. Guest

    TUNIIMAGE

    Message from: "Farshad Mohajeri" "Helmut Hort" wrote in message news:6jjhLDq8LHA.3152@anaxagvs227... > Hi Farshad, > > will we have the event MouseOver in tuniimage with version 0.85? > Maybe. Version 0.85 will be mostly an architectural change release. Logged #966 .
  13. Guest

    Aboout UniComoBox

    Message from: "Farshad Mohajeri" "UniGui" wrote in message news:VdaSiSi8LHA.3976@anaxagvs227... > Hi,Farshad. > Use UniDBComboBox, when after obtain data,I can't use the mouse to > DragDown operation in IE. > WHY? How do you "obtain data"? .
  14. Message from: "Farshad Mohajeri" "ldb" wrote in message news:7Vc30iq8LHA.1980@anaxagvs227... > The power on INIGUI is Web Development. > For me all efforts must be in this direction with some optimization for > mobile application (android and mac IOS). > There will be improvements in this field. > For VCL application there are many VCL library (devexpress, tms ...) that > can satisfay any desktop application. > Good thing about 0.85 is that you can easily change the VCL implementation. For example you can replace the standard VCL TButton with some glossy shiny 3rd party button with no change on Web part. .
  15. Message from: "Farshad Mohajeri" "Dennis Ortiz" wrote in message news:4Y1uOql8LHA.1984@anaxagvs227... > Hi, > >>>> -Components can be created as "Web only" with no VCL implementation >>> >>> Even i undestand why some component make sense only in WebMode, for my >>> need this is dangerous. >> >> I've noticed that major group of people are using uniGUI for web >> development >> only and VCL mode is optional for them. >> >> I'm one of those who use VCL part too and it was the original idea behind >> uniGUI . Certainly the VCL part will continue to exist, but in a >> different >> mode. > > with this different mode, is necesary change any current code? > To compile old projects with version 0.85.0 some parts of code may need modification. It is not specific to VCL mode or WEB mode. As a result of changes in the architecture you may need to change some parts of your code. .
  16. Message from: "Farshad Mohajeri" In unit MainModule.pas add the following: procedure TUniMainModule.UniGUIMainModuleCreate(Sender: TObject); begin Theme:=UniServerModule.CurrentTheme; end; "Antonio G. Gutierrez" wrote in message news:eLt7lbs8LHA.1984@anaxagvs227... > Hola, gracias por tu interés, a continuación te pongo el código que no me > funciona para cambiar el Theme..el primero es el Uniserver y después el > evento onclick para cambiar dicho theme. > > unit ServerModule; > > interface > > uses > SysUtils, UniGUIServer, UniGUIMainModule; > > type > TUniServerModule = class(TUniGUIServerModule) > procedure UniGUIServerModuleCreate(Sender: TObject); > private > { Private declarations } > protected > procedure FirstInit; override; > public > { Public declarations } > CurrentTheme : string; > end; > > function UniServerModule: TUniServerModule; > > implementation > > {$R *.dfm} > > uses > UniGUIVars; > > function UniServerModule: TUniServerModule; > begin > Result:=TUniServerModule(UniGUIServerInstance); > end; > > procedure TUniServerModule.FirstInit; > begin > InitServerModule(Self); > end; > > procedure TUniServerModule.UniGUIServerModuleCreate(Sender: TObject); > begin > > UniServerModule.ServerRoot:=GetCurrentDir; > UniServerModule.ExtRoot:=GetCurrentDir+'\ext-3.3.0'; > > > end; > > initialization > RegisterServerModuleClass(TUniServerModule); > end. > > > Now Onclick event. > > procedure TMainForm.bcambiartemaClick(Sender: TObject); > begin > > UniServerModule.Lock; > try > UniServerModule.CurrentTheme:='classic'; > finally > UniServerModule.UnLock; > end; > TUniGUIApplication(UniApplication).Restart; > > > > > end; > > > > > > > > > > "Farshad Mohajeri" escribió en el mensaje > news:hCS6EJJ8LHA.3976@anaxagvs227... >> If you've replicated same code in demo it should work. Can you paste your >> code here? >> >> "Antonio G. Gutierrez" wrote in message >> news:QujFJXD8LHA.3976@anaxagvs227... >>> Greetings, I tried to change the Theme to choose their means by the >>> user, so I follow the demo and megademo fishfact and not make the change >>> .. any suggestions? >>> >> >> > > .
  17. Message from: "Farshad Mohajeri" "WildFrag" wrote in message news:9NtJW9r8LHA.3152@anaxagvs227... > Farshad, can you describe deploy process on IIS 7.5? try to use document > about deploy on IIS7, but fail. At what level does it fail? .
  18. Message from: "Antonio G. Gutierrez" Hola, gracias por tu interés, a continuación te pongo el código que no me funciona para cambiar el Theme..el primero es el Uniserver y después el evento onclick para cambiar dicho theme. unit ServerModule; interface uses SysUtils, UniGUIServer, UniGUIMainModule; type TUniServerModule = class(TUniGUIServerModule) procedure UniGUIServerModuleCreate(Sender: TObject); private { Private declarations } protected procedure FirstInit; override; public { Public declarations } CurrentTheme : string; end; function UniServerModule: TUniServerModule; implementation {$R *.dfm} uses UniGUIVars; function UniServerModule: TUniServerModule; begin Result:=TUniServerModule(UniGUIServerInstance); end; procedure TUniServerModule.FirstInit; begin InitServerModule(Self); end; procedure TUniServerModule.UniGUIServerModuleCreate(Sender: TObject); begin UniServerModule.ServerRoot:=GetCurrentDir; UniServerModule.ExtRoot:=GetCurrentDir+'\ext-3.3.0'; end; initialization RegisterServerModuleClass(TUniServerModule); end. Now Onclick event. procedure TMainForm.bcambiartemaClick(Sender: TObject); begin UniServerModule.Lock; try UniServerModule.CurrentTheme:='classic'; finally UniServerModule.UnLock; end; TUniGUIApplication(UniApplication).Restart; end; "Farshad Mohajeri" escribió en el mensaje news:hCS6EJJ8LHA.3976@anaxagvs227... > If you've replicated same code in demo it should work. Can you paste your > code here? > > "Antonio G. Gutierrez" wrote in message > news:QujFJXD8LHA.3976@anaxagvs227... >> Greetings, I tried to change the Theme to choose their means by the user, >> so I follow the demo and megademo fishfact and not make the change .. any >> suggestions? >> > > .
  19. Message from: "WildFrag" Farshad, can you describe deploy process on IIS 7.5? try to use document about deploy on IIS7, but fail. .
  20. Message from: "C_thelegend" really great work. Il 01/04/2011 22.43, Farshad Mohajeri ha scritto: > As I've stated many times before version 0.85.0 will play a crucial role > in this framework. It will redesign component system core with lots of > changes and enhancements. > Here is a list of some of these changes: > -"as" and "is" keywords will work as they should. > -Components can be created as "Web only" with no VCL implementation > -All visual controls will be inherited from same root ancestor > -Custom component creation will be possible. ( Of course, it is possible > to create custom components right now, but implementation details are > fairly complex) > -Better OO design > -Streaming of Forms will be possible > -Component base for JS event handling will be prepared > -and more... > New core that we will introduce in v0.85 is developed under a different > branch and once it is completed I need to manually merge it into main > trunk. (An automatic merge will fail for sure because of massive changes > in some units) This may take a few days or more until merge is fully > completed and tested. While merge is under progress I can't publish > patch releases and I won't be able to test any reported case. In this > period you can continue reporting bugs and issues but I may be quite > slow in replying. > After version 0.85 we will have one big "Bug Fix" release and another > big "Feature Centric" release. Also there will be a "Documentation > Centric" release. > Regards, > Farshad Mohajeri .
  21. Message from: "ldb" The power on INIGUI is Web Development. For me all efforts must be in this direction with some optimization for mobile application (android and mac IOS). For VCL application there are many VCL library (devexpress, tms ...) that can satisfay any desktop application. Il 03/04/2011 19:16, Farshad Mohajeri ha scritto: > "Dennis Ortiz" wrote in message > news:%231KKNSY8LHA.1984@anaxagvs227... >> Hi, >> >>> -Components can be created as "Web only" with no VCL implementation >> >> Even i undestand why some component make sense only in WebMode, for my >> need this is dangerous. > > I've noticed that major group of people are using uniGUI for web development > only and VCL mode is optional for them. > > I'm one of those who use VCL part too and it was the original idea behind > uniGUI . Certainly the VCL part will continue to exist, but in a different > mode. > >> I hope the focus between Web and Desktop remains like today. >> > > It will. Only we may develope some components for web mode only and leave > the VCL part implementation to the developers themselves or we may > implement the Web part first and implement the VCL part later. > > .
  22. Guest

    TUNIIMAGE

    Message from: "Helmut Hort" Hi Farshad, will we have the event MouseOver in tuniimage with version 0.85? Helmut -- .
  23. Message from: "Amri" Very much hope add TUniButtonEdit & TUniDBButtonEdit in Ver0.85! It is so important/simple & fast in dbms system dev to uses. .
  24. Message from: "Dennis Ortiz" Hi, >>> -Components can be created as "Web only" with no VCL implementation >> >> Even i undestand why some component make sense only in WebMode, for my >> need this is dangerous. > > I've noticed that major group of people are using uniGUI for web development > only and VCL mode is optional for them. > > I'm one of those who use VCL part too and it was the original idea behind > uniGUI . Certainly the VCL part will continue to exist, but in a different > mode. with this different mode, is necesary change any current code? .
  25. Guest

    UniDBCHECKBOX

    Message from: "Farshad Mohajeri" "Helmut Hort" > Where did you hide the tunidbcheckbox? I can't find it in my > installation which is actually the last you publisched on your website. In "UniGUI Data Controls" Palette You may need to rebuild and reinstall uniGUI design time packages .
×
×
  • Create New...