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...
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...
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.
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.
Dim strCompletePath As String
strCompletePath = Server.MapPath(strPath)
myDirInfo = New DirectoryInfo(strCompletePath)
Or just...
[code]
strPath = Server.MapPath(strPath)
myDirInfo = New DirectoryInfo(strPath)
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.