with vb.net05 + access03 .mde file
is it possible to create a module ( function ) in side a password protected access .mde file from ado.net
can i get any sample code please
Printable View
with vb.net05 + access03 .mde file
is it possible to create a module ( function ) in side a password protected access .mde file from ado.net
can i get any sample code please
You are going to create anything inside of an executable anything.
Even if you could create the module, what good would it do you. You couldn't put any code inside of it.
You need the source code to create the module and then the code inside the module that actually does something.
Why would you even want to do this?
thanks for your reply sir
the thing is that , i can't code from with in the database because it is n .mde file
i want to create module or create a function in side a existing module in side the .mde file because i want one function which i wanted to get used in SQL query ( the database was created by some one else long back)
the query is some thing like this
say for eg in a table "x":
field1
jony/mary/sam ' i want to split this row and put it in a array
i want to split the each word with where "/" and query as
"select something where xthing = array(0)" and so on
this is tedious externally , hence instead i want a function with in access it self
please advise