Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. masoal

    sort images list

    Hi all, do you know any Javascript or PHP snippet to let the users from a content manager site sort a list of images? what I'd like to do is to put all the images on the page and then let the user sort them. One way could be adding a typical list box with all the image names but I 'd like...
  2. masoal

    Recycle's bin path

    I'm trying to retrieve the physical path of the Recycle bin in a VC++6 application (under Win XP Pro SP2) using "SHGetSpecialFolderLocation": char szPath[MAX_PATH]; LPITEMIDLIST pidl = NULL; SHGetSpecialFolderLocation(NULL, CSIDL_BITBUCKET, &pidl); SHGetPathFromIDList(pidl, &szPath[0])...
  3. masoal

    CHtmlView visualization style

    I'm using a CHtmlView/ChtmlCtrl to view the content of folders. I'd like to change the way that these folders are shown: list/icon view, lateral menu with copy & paste,... shown or hidden, etc. How can I change the CHtmlView visualization options from within the application? Thanks in advance...
  4. masoal

    pg_autovacuum fails as a windows service

    I'm trying to install pg_autovacuum as a windows service. The windows user account used is a local one and it has admin privileges. I'm executing: pg_autovacuum -I -N winuser -W pwdwinuser -U pguser -P pwdpguser and I get: "ERROR: The account name is invalid or does not exist, or the password...
  5. masoal

    PGAPI_SetPos problem

    hi all, I'm developing an application under WinXP/Visual C++/MFC and accessing a PostgreSQL 8.0.1 db. All works fine (open the db, SELECT, ...) until I try to insert a row using the CRecordset::Update() class method that the Db returns an exception: "Only SQL_POSITION/REFRESH is supported...
  6. masoal

    freeze first frame

    Hi all, I have a MediaPlayer embeded in an HTML page. When I initialize it, I assign a default file but depending on the user choice, it's changed. The problem is when I dinamically change the URL (file that is playing with a: "Player.URL = newFile;") that the display remains as a black box and...
  7. masoal

    Vertical Scrollbar behavior

    No, it isn't a dropdrown: the items are always displayed, that's why I say it's like a textarea ... maybe it's better to compare it with the Windows "Add/Remove Program": a web page but with the scrollbar behavior customized. What I've done until this moment is to catch every event of the...
  8. masoal

    Vertical Scrollbar behavior

    Sorry, but it isn't uploaded and I just can explain what I want to do: The normal behavior of a vertical scrollbar in a web page is to scroll at every hit on the down/up arrow. As my page is like a list control where each line is a different item (table row) and I highlight the selected...
  9. masoal

    Vertical Scrollbar behavior

    Hi all: I need to control the vertical scrollbar tion of a page when the user hits an arrow. The problem is that the page is like a list or text area control and the behavior should be like this: only when I'm at the bottom of this list the scroll should go down and not at every hit of the...
  10. masoal

    Dynamic <embed> "src"

    I finally didn't apply the dynamic insert and remove of content because I had memory problems. I mean that I wanted to do something like you, to play and stop different videos so after executed the Stop command I removed the innerHtml of the embeded object but the result was a memory problem as...
  11. masoal

    MediaPlayer objects

    Hi all!!! Is there any way to embed several MediaPlayer objects into the same page. I've tried to embed 2 and the result is that the first object plays both videos (mixing them or something like that) and the second one is a black box .... any ideas?
  12. masoal

    embedding several MPGs

    Hi all, I want to show several(hundreds) MPG videos in different positions within a webpage but only one would be visible at the same time. As you can imagine, if I embed all the MediaPlayer plugins, the Windows resources will be collapsed so, one possible solution is to embed the plugin...
  13. masoal

    Dynamic <embed> "src"

    Oh, that's right, I've noticed that if I don't initialize the "type" attribute the code is very wateful because I haven't loaded the corresponding plugin ... I've tried to do it in another way and this time works much better: I dynamically replace the whole EMBED tag with all their attributes...
  14. masoal

    Dynamic <embed> "src"

    Sorry, I've forgotten to tell that it just have to work under IE. Thanks !!!
  15. masoal

    Dynamic <embed> "src"

    Hi all, I want to dynamically change the SRC of an <EMBED> element but it seems that it doesn't work altough that if I retrieve the src attribute after change it, it's ok. <body> ... <EMBED name="video" id="video" src="" width="200" height="198" showControls="0" enablecontextmenu="0"...

Part and Inventory Search

Back
Top