Jump to content

Guest

Members
  • Posts

    2514
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Guest

  1. Guest

    session problem

    Message from: "goodeboy" 1. 1. how to get the value of the current session? 2. How to limit the number of active session? .
  2. Guest

    Connections

    Message from: "news.fmsoft.net" Tanks. Em 23/03/2011 08:12, Farshad Mohajeri escreveu: > "news.fmsoft.net" wrote in message > news:FOF0QjL6LHA.3560@anaxagvs227... >> Would like to know the ip of who is logged in the system? > > add to uses: > ServerModule, UniGUIApplication; > > Routine: > > procedure TMainForm.UniButton1Click(Sender: TObject); > var > I : Integer; > ASessionList: TList; > begin > ASessionList:=UniServerModule.SessionManager.Sessions.SessionList.LockList; > try > for I := 0 to ASessionList.Count-1 do > begin > UniMemo1.Lines.Add( > TUniGUISession(ASessionList).UniApplication.RemoteAddress ); > end; > finally > UniServerModule.SessionManager.Sessions.SessionList.UnlockList; > end; > end; > > .
  3. Guest

    Connections

    Message from: "Farshad Mohajeri" "news.fmsoft.net" wrote in message news:FOF0QjL6LHA.3560@anaxagvs227... > Would like to know the ip of who is logged in the system? add to uses: ServerModule, UniGUIApplication; Routine: procedure TMainForm.UniButton1Click(Sender: TObject); var I : Integer; ASessionList: TList; begin ASessionList:=UniServerModule.SessionManager.Sessions.SessionList.LockList; try for I := 0 to ASessionList.Count-1 do begin UniMemo1.Lines.Add( TUniGUISession(ASessionList).UniApplication.RemoteAddress ); end; finally UniServerModule.SessionManager.Sessions.SessionList.UnlockList; end; end; .
  4. Message from: "Farshad Mohajeri" "jwsoft" wrote in message news:0D3mO7J6LHA.2880@anaxagvs227... > Hi: > > How to use TUniHTMLFrame to open a Tuniform? > > It's very important ,beacause i want to add dynamic contents in > TUniHTMLFrame,and open different TuniForm > Unfortunately it is not possible to open a uniGUI Form from html code in another Frame. .
  5. Message from: "Farshad Mohajeri" "smart" wrote in message news:z3zk0lI6LHA.3560@anaxagvs227... > Hi, Can do English translate Chinese of Controls in web mode? In ServerModule change ExtLocale parameter. I think "zh_CN" is for Chinese. .
  6. Message from: "Farshad Mohajeri" "smart" wrote in message news:z3zk0lI6LHA.3560@anaxagvs227... > Hi, Can do English translate Chinese of Controls in web mode? Hi, What do you want to translate? Labels and Captions? .
  7. Guest

    Connections

    Message from: "news.fmsoft.net" Would like to know the ip of who is logged in the system? .
  8. Message from: "jwsoft" Hi: How to use TUniHTMLFrame to open a Tuniform? It's very important ,beacause i want to add dynamic contents in TUniHTMLFrame,and open different TuniForm thanks
  9. Message from: "smart" Hi, Can do English translate Chinese of Controls in web mode? Thanks!!! .
  10. Message from: "Farshad Mohajeri" "Oscar Flor" wrote in message news:4yM6bTA6LHA.2164@anaxagvs227... > Mr. Farshad: > > There is a way to open other browser window and download a file/get pdf > file from it? > UniHTMLFrame1.HTML.Text:= ''; .
  11. Guest

    Copy to clipboard

    Message from: "Farshad Mohajeri" "Javi" wrote in message news:OUgrdiG6LHA.3560@anaxagvs227... >I want to copy to clipboard of the client PC. I want to copy a string. > > Texto := DBGridToString(DbConsulta); > Clipboard.AsText := Texto; > > But I create, that the best would be, can copy any type of data: string, > bitmap, file... If it is not very costly. > I will investigate javascript API to find available options for a browser side clipboard usage. logged #930 .
  12. Message from: "Farshad Mohajeri" "bettersoft" wrote in message news:9GahBnD6LHA.2168@anaxagvs227... > > >> 0.84.5.836 >> - 0000915: TUniTreeNode: GetFirstChild, GetLastChild methods. >> - 0000913: TUniTreeNode.Count property > > > > All TTreeNode properties should be changed to TuniTreeNode ah? Otherwise, > the web can not work. > There GetNextChild, GetNextSibling, GetNext, GetNextVisble, GetPrev, > GetPrevChild, GetPrevSibling, GetPrevisible etc. Additonal TreeNode features will be implemented in time. .
  13. Message from: "Farshad Mohajeri" "scarre" wrote in message news:8vEIOMB6LHA.2164@anaxagvs227... > On 21/03/2011 22:55, Farshad Mohajeri wrote: >> "scarre" wrote in message >> news:56A02IB6LHA.2164@anaxagvs227... >>> Hello, >>> Would there be any option/possibility to render icons or small png, bmp >>> or >>> jpg images in UniStringGrid cells (e.g. by accessing/drawing on cell >>> canvas in OnDrawCell) ? >>> Regards, >> >> Currently the only way is to assign an HTML tag directly to cell >> Cells[1,1] := ''; >> >> > Great ! That will do for now. Just consider my question as a feature > request, then. Well, a web grid cell doesn't have a Canvas so assigning an Image seems to be the only way. .
  14. Guest

    Copy to clipboard

    Message from: "Javi" I want to copy to clipboard of the client PC. I want to copy a string. Texto := DBGridToString(DbConsulta); Clipboard.AsText := Texto; But I create, that the best would be, can copy any type of data: string, bitmap, file... If it is not very costly. Thanks -- NNTP.hk - (^(oo)^) http://www.nntp.hk/web/ "Farshad Mohajeri" wrote: > > > "Javi" wrote in message > news:IVaXCwW5LHA.3560@anaxagvs227... > > Hi > > > > How I can copy to clipboard (Web Mode)? > > What is the source? Do you want to copy to clipboard of the client PC? > > > .
  15. Message from: "bettersoft" > > 0.84.5.836 > - 0000915: TUniTreeNode: GetFirstChild, GetLastChild methods. > - 0000913: TUniTreeNode.Count property All TTreeNode properties should be changed to TuniTreeNode ah? Otherwise, the web can not work. There GetNextChild, GetNextSibling, GetNext, GetNextVisble, GetPrev, GetPrevChild, GetPrevSibling, GetPrevisible etc. .
  16. Message from: "scarre" On 21/03/2011 22:55, Farshad Mohajeri wrote: > "scarre" wrote in message > news:56A02IB6LHA.2164@anaxagvs227... >> Hello, >> Would there be any option/possibility to render icons or small png, bmp or >> jpg images in UniStringGrid cells (e.g. by accessing/drawing on cell >> canvas in OnDrawCell) ? >> Regards, > > Currently the only way is to assign an HTML tag directly to cell > Cells[1,1] := ''; > > Great ! That will do for now. Just consider my question as a feature request, then. Thanks. .
  17. Message from: "scarre" On 21/03/2011 22:52, scarre wrote: > Hello, > Would there be any option/possibility to render icons or small png, bmp > or jpg images in UniStringGrid cells (e.g. by accessing/drawing on cell > canvas in OnDrawCell) ? > Regards, > Stephane I suppose it would be more like a TUniDrawGrid component ? Or a combination of Draw and String Grid... .
  18. Message from: "Farshad Mohajeri" "scarre" wrote in message news:56A02IB6LHA.2164@anaxagvs227... > Hello, > Would there be any option/possibility to render icons or small png, bmp or > jpg images in UniStringGrid cells (e.g. by accessing/drawing on cell > canvas in OnDrawCell) ? > Regards, Currently the only way is to assign an HTML tag directly to cell Cells[1,1] := ''; .
  19. Message from: "scarre" Hello, Would there be any option/possibility to render icons or small png, bmp or jpg images in UniStringGrid cells (e.g. by accessing/drawing on cell canvas in OnDrawCell) ? Regards, Stephane .
  20. Message from: "Oscar Flor" Mr. Farshad: There is a way to open other browser window and download a file/get pdf file from it? Best Regards Oscar Flor .
  21. Message from: "Farshad Mohajeri" "bettersoft" wrote in message news:F8KZwM65LHA.2164@anaxagvs227... > TuniListView and TUniPopMenu can also provide it? > The two control more practical. ListView is already logged. .
  22. Message from: "Farshad Mohajeri" Current Version: 0.84.5.836 Changes: 0.84.5.836 +---------------------------------------------------------------------------------------- - 0000870: TUniSpinEdit: OnChange event - 0000927: UniDBDateTimePicker: Value change in VCL mode doesn't set Edit mode - 0000926: UniDBGrid: DataSet changes aren't reflected when DisableControls is called - 0000915: TUniTreeNode: GetFirstChild, GetLastChild methods. - 0000913: TUniTreeNode.Count property - 0000925: TUniImage: OnClick, OnMouseDown, OnMouseUp - 0000924: Invalid string constant on line XXX error - 0000923: Add JSON to default mime types. - 0000921: UniDateTimePicker: Visible bug .
  23. Message from: "bettersoft" TuniListView and TUniPopMenu can also provide it? The two control more practical. thanks .
  24. Message from: "Farshad Mohajeri" "bettersoft" wrote in message news:zNfgtD65LHA.3560@anaxagvs227... > Can you add a Tunichecklistbox uni control products? Request logged #928 .
  25. Message from: "bettersoft" Can you add a Tunichecklistbox uni control products? .
×
×
  • Create New...