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 TouchToneTommy 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: *

  • Users: masoal
  • Content: Threads
  • Order by date
  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

    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...
  8. 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?
  9. 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...
  10. 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