非程序员需要VB代码帮助才能在硬盘上找到文件

非程序员需要VB代码帮助才能在硬盘上找到文件

本文介绍了非程序员需要VB代码帮助才能在硬盘上找到文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

长话短说:我的Access开发人员让我失望。他没有b $ b真的知道VB,他也不知道怎么做我需要的。


情况:

访问将在个人用户的

机器上本地使用的数据库。


我需要什么:

我需要代码来使Access查找安全性。文件位于

用户的硬盘上。如果找到该文件,它允许用户继续

进入该应用程序。如果找不到该文件,数据库会关闭

并且不让用户继续操作。


我正在求求并恳求所有专家的帮助。我不是一个VB程序员,而且我不是那么无知,以为我可以自学了。

如何在我之前的短时间内做到这一点需要释放这个。


是否有人愿意帮我这个?

Long story short: My Access developer is letting me down. He doesn''t
really know VB and he can''t figure out how to do what I need.

Situation:
Access database that will be used locally on individual user''s
machines.

What I need:
I need code to make Access look for a "security" file located on the
user''s hard drive. If it finds the file, it allows the user to continue
into the application. If it doesn''t find the file, the database shuts
down and does not let the user proceed.

I''m begging and pleading for help from all of you experts. I am not a
VB programmer, and I''m not so ignorant as to think I could teach myself
how to do this in the short time I have before I need to release this.

Is anyone willing to help me with this?

推荐答案




我想以下的东西会做你想做的事:


如果Len(Dir(安全文件的路径))> 0然后

让用户在

其他

Docmd.Quit

结束如果


Arno R



I guess something like the following will do what you want:

If Len(Dir("path to secure file")) > 0 then
let user in
else
Docmd.Quit
end if

Arno R




这篇关于非程序员需要VB代码帮助才能在硬盘上找到文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 15:11