Jump to content

mos

uniGUI Subscriber
  • Posts

    269
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mos

  1. Hi Delphi Developer, Attached is a simple test to illustrate the issue. FrameColour.zip
  2. I have a frame and a single image on the frame which has it's onClick event set. The code in the onClick event toggles the color of the Frame: procedure TUniFrame1.UniImage1Click(Sender: TObject); begin if Self.Color = clRed then Self.Color := clBtnFace else Self.Color := clRed; end; What happens is that when you click the image the very first time the Frame color is red. However when you click it again to reset the color back to clBtnFace it doesn't change.
  3. Hi Delphi Developer, Thanks for code again which work just fine however I have one issue which I am trying to get around. On the treeview I have an onChange event and what I am finding is that when I click and hold down the mouse to start drag the onChange will trigger as well. Do you know of a way I can avoid the onChange being triggered when I try and start a drag?
  4. Hi Delphi Developer, Thanks for code. I have another question: when the drop occurs how can I call a Delphi procedure so I can process the information that was dragged to the panel?
  5. Bumping this item. I need to know if it's possible to drag and drop from a treenode in a treeview to a panel? If so can someone provide some example code.
  6. Can anyone tell me what I need to do to be able to drag a treenode in a treeview and drop it on a panel?
  7. Hi Haryri, I have actually worked out what I needed to do. All I had to do was replace the Close; call with the JS and my application now closes. Thanks for all your help.
  8. Hi Haryir, Can you tell me how this JS would actually get called? I have a button on the mainform which the user clicks to exit my application and the onclick event handled just calls Close;.
  9. Hi Hayri, Thanks for your reply. My application is actually launched from within another uniGUI application via javascript and so once a user has finished with my application I need to be able to close my tab/window. In my situation would I be able to use javascript to close my tab/window when someone clicks on the exit button in my application and if so where would I need to put this javascript so it can be executed?
  10. When a user clicks a button to exit my uniGUI application it currently displays a page: "Web Session Terminated" with a hyperlink to Restart Application. Instead of the above occurring I would like the browser tab/window to close rather than display the above. What changes do I need to make to force my application to close it's own browser tab/window when exiting?
  11. Does anyone have any recommendations for any 3rd party Ad Hoc reporting libraries that can be integrated with uniGUI? Thanks.
  12. mos

    Audio Files

    We have developed software that captures audio to wave files, and have a listening function within a desktop program. When the user clicks on a listen button, the client program connects to the server via TCP/IP and then receives audio in 2 second chunks that gets played out the pc speaker. Have been asked to add similar functionality into the web server program. Getting the audio from the server to the web server is "easy" (broadly speaking) but not sure how to get that raw audio into the web browser. Can anyone suggest a library/component that could be used within unigui that might be able to do this?
  13. skafy, can you explain what you mean by database POST_EVENT and how this would work?
  14. I have two uniGUI applications that need to be kept separated. One is an admin tool and the other is an add-on. In the admin tool uniGUI app it displays a treeview and what I want to do is when a node is clicked call the second uniGUI app so it's contents is displayed in either a separate browser window or in a frame created by the admin tool uniGUI app. Can you tell me what I need to do to be able to display the contents of the second uniGUI app in a separate browser window or in the frame of the admin tool uniGUI app?
×
×
  • Create New...