|
-
Oct 4th, 2021, 06:34 AM
#1
Thread Starter
PowerPoster
giving the data files, made by app the secruity settings the same.
Dear VBFormers,
I have found my problem in my encription techniques that i have adopted, like so. The reason that my app isn't being able to encript and also decript, is that it is looking for another login, on that i had removed from this system, that i am working on with it. So then if i use the "Everyone" secruity settings for my Built Project EXE and then i wish to have it so the same on the files, that i write with then so.
!! Thanks in advance !!
Richard Graeme Ambra
I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...
|Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |
Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...
-
Oct 4th, 2021, 07:04 AM
#2
Re: giving the data files, made by app the secruity settings the same.
Still looking for anyone to do more unpaid work for you???
cheers,
</wqw>
-
Oct 4th, 2021, 09:22 PM
#3
Thread Starter
PowerPoster
Re: giving the data files, made by app the secruity settings the same.
for yeah sure, i am also doing that still, even so
I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...
|Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |
Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...
-
Oct 4th, 2021, 09:35 PM
#4
Re: giving the data files, made by app the secruity settings the same.
Most folders have security set up on them so that new folders and files created there inherit a default set of security attributes. Some of these can be complex, employing special security identity groups such as Creator Owner.
It can be a big topic, and a bit intimidating to users who rely on appcompat and admin account use to try to simulate the wild west that existed on insecure Win9x.
A quick hack that can simulate the wild west again in the post-XP era where things got locked down further might be to create data folders and files in the new (well, new in 2006) "Public" special folder.
This isn't designed to be a fixed path across Windows installations. The easiest way for your programs to locate this folder when they run is probably to interrogate the environment variable PUBLIC, as in:
Code:
MsgBox Environ("PUBLIC")
Or you can call SHGetKnownFolderPath(), etc. to look up FOLDERID_Public.
That's really meant to be a "root level" path, so your programs should probably check for (and if necessary create) a uniquely-named application data folder there and then create your files within that subfolder.
Those files should allow any operation by any logged on user: read, write, delete, modify, etc.
-
Oct 4th, 2021, 09:38 PM
#5
Thread Starter
PowerPoster
Re: giving the data files, made by app the secruity settings the same.
-- Thanks for the Input$...
I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...
|Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |
Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|