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 SkipVought 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. dmxd99

    CFFile Upload

    This is my form page <head> <style type="text/css"> p.normal {font-weight: normal; font-size: 80%} p.thick {font-weight: bold} </style> </head> <cfoutput> <cfset PixNum = 10> <cfif #attributes.Type# EQ "F" > <p class="normal">Name of the link</p> <!--- For new link --->...
  2. dmxd99

    CFFile Upload

    I tried them all (makeunique,error etc) even the file names have distinct names, but still have the same problem.
  3. dmxd99

    CFFile Upload

    I can upload my files (pictures) to the webserver without any problem. However, if I try to upload a few more files, they just overwrite my previous files even though their names are unique. Anyone has any suggestions?
  4. dmxd99

    Help with the tree layout

    I need second pair of eyes for this problem. I have been having problem with the layout of my tree. The children of the tree should be indented under their parents/folder, very much like windows explorer. If my codes works, it should look like this Gallery Gallery1...
  5. dmxd99

    Please help with the tree layout

    I need second pair of eyes for this problem. I have been having problem with the layout of my tree. The children of the tree should be indented under their parents/folder, very much like windows explorer. If my codes works, it should look like this Gallery Gallery1...
  6. dmxd99

    Batch upload of images to webserver

    Anyone knows how to upload a batch of unlimited number of images to the webserver? CFFile only does one at a time. Thanks.
  7. dmxd99

    CSS layout

    Thanks imstillatwork. I got the tree working but not the layout. I am looking for a sample code that has css interact with the javascript to expand and collapse the tree.
  8. dmxd99

    CSS layout

    Thanks for the sample. What do you do when the tree has unlimited sub-folders? It can be added by users. What can you do to generate a dynamically css? Thanks.
  9. dmxd99

    CSS layout

    Does anyone know how to use Cascading Style Sheet layout to display the tree like windows explorer. Any sample codes would be great. Thanks.
  10. dmxd99

    Line Chart

    Does anyone know a tutorial website site or can give me a starting point to do a dynamic line chart? The data will be pulled out from database using sql queries. Thanks.
  11. dmxd99

    Link counter

    I don't want to redirect to the actual link because the user can bookmark once he gets to the actual page and the count would not be accurate anymore when he comes back to that page. Is there a way to use application variable or custom tag to handle this?
  12. dmxd99

    Link counter

    Anyone knows how to track links on a website. I need to determine how many time a user click on a link of a given website. There is more than 1 link on a site. Thanks.
  13. dmxd99

    Dynamic Page Counter

    You might not want to store the number of hits. If I were you, I would record a timestamp given a site/application and then use SQL query to count number of timestamps and that is your total hit. The advantage of this approach is you could estimate number of hits given a site, a time frame...
  14. dmxd99

    An equivalent API _execlp but not terminating the caller process

    I used _spawnlp and it worked to bring up nodepad, windows explorer but failed to bring up power point and the Java plotting package. Any ideas on why it worked on certain executable files and not others? I am using windows XP and visual studio 6.0 to compile source codes. Thanks...
  15. dmxd99

    An equivalent API _execlp but not terminating the caller process

    There is no fork() in ANSI... and I can't use CreateProcess either. Any other suggestions? Thanks.
  16. dmxd99

    An equivalent API _execlp but not terminating the caller process

    Anyone knows an ANSI way to call another Java program within C codes without replacing the caller process. _execlp is an API that is used to execute another program but it "terminates" the caller process and I don't want that.
  17. dmxd99

    Fork()

    Can you give me a sample code or further explain how conditional macros/preprocessor directives can be used...
  18. dmxd99

    Fork()

    Fork() may be used to create a child process in unix but I am compiling my c codes in visual studio 6.0 and the equivalent API is createProcess() However I have to stick with ANSI C therefore I can't use createProcess() so is there another API that create a child process that can run in Visual...
  19. dmxd99

    Help with compiling errors a c file in Visual Studio 6.0

    ArkM, you are right about the 2 errors but I still get a bunch of errors like before. I am using on windows XP. Is there any configuration I get to do? Thanks.
  20. dmxd99

    Help with compiling errors a c file in Visual Studio 6.0

    I am trying to compile this piece of C codes in Visual studio 6.0 and getting errors. Is it true that in order to use data type "HANDLE" I need to have #include <windows.h> Can "HANDLE" be used in a c program or only C++? I have a C executable code that need to execute and pass commands...

Part and Inventory Search

Back
Top