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. julianonunes

    Capture audio/video and send through the internet

    How can I capture audio and video so I can send them through the internet? I want to create a web conference application.
  2. julianonunes

    Hierarchical data in result set

    The maximum depth is 3 childs. Main |_ child |_ child |_ child
  3. julianonunes

    Hierarchical data in result set

    Denny, I don't want to return the CategoryID only, I have to return the data like this: CategoryID | CategoryName | CategoryFather | HierarchicalLevel 1 | Video | 0 | 0 2 | DivX | 1 | 1 3 | WMV | 1 | 1...
  4. julianonunes

    Hierarchical data in result set

    How can I create a function that returns hierarchical data from a table with this structure: - CategoryID - CategoryName - CategoryFather I want to bring the result set like this... CategoryID | CategoryName | CategoryFather | HierarchicalLevel 1 | Video | 0 | 0...
  5. julianonunes

    Block process execution

    I got some information about API Hooking, so using this, I will intercept API calls that are made when a program tries to execute. But I'll try your tips too.
  6. julianonunes

    Block process execution

    Guys, I'm a programmer and I need to CREATE a software that detects attempts of process initialization and block it before running. I'm searching this on Google for a week and nothing....so if somebody could really help me I would thank you.
  7. julianonunes

    Block process execution

    Other arbitrary program
  8. julianonunes

    Block process execution

    It's not a user problem, I want to make a program that detects an attempt of process inicialization, bring their information and block it (stop it).
  9. julianonunes

    Displaying contents of a folder with ASP and allow users to download

    Dim strCompletePath As String strCompletePath = Server.MapPath(strPath) myDirInfo = New DirectoryInfo(strCompletePath) Or just... [code] strPath = Server.MapPath(strPath) myDirInfo = New DirectoryInfo(strPath)
  10. julianonunes

    Embed files in an existing .EXE

    It's like Install Shield and other install systems that unify everything in only one file.
  11. julianonunes

    Embed files in an existing .EXE

    I need a programming step, because my software will create this file.
  12. julianonunes

    Block process execution

    Sorry, I've posted here before I see that here we have an API forum.
  13. julianonunes

    Embed files in an existing .EXE

    I want to make an Install System that compress the files and get the compressed files data and include them in the Install System .EXE file. It's not a virus.
  14. julianonunes

    Displaying contents of a folder with ASP and allow users to download

    The file web.config is under ./uploads/ only or under ./uploads/dir/?
  15. julianonunes

    Displaying contents of a folder with ASP and allow users to download

    Before clicking on the link, right click on the page and open the HTML source code, and post it here.
  16. julianonunes

    Displaying contents of a folder with ASP and allow users to download

    Oh, sorry, when you told only ASP, I thought that you was telling about ASP3... Can you show the HTML output generated when the is ran?
  17. julianonunes

    Block process execution

    Are there any way to detect any attempt of process initialization and block it before?
  18. julianonunes

    Embed files in an existing .EXE

    How can I add information inside an existing .EXE file and it continues working normally?
  19. julianonunes

    Displaying contents of a folder with ASP and allow users to download

    Take a look at W3Schools tutorials about FSO (File System Object), it's everything you need.

Part and Inventory Search

Back
Top