Click here to Skip to main content
15,898,943 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: VB.NET encryption code to VB6 Pin
Jochen Arndt24-Apr-18 0:48
professionalJochen Arndt24-Apr-18 0:48 
AnswerRe: VB.NET encryption code to VB6 Pin
Chris Quinn24-Apr-18 4:40
Chris Quinn24-Apr-18 4:40 
QuestionFlat NumericUpDown Pin
jtpaa19-Apr-18 20:03
jtpaa19-Apr-18 20:03 
AnswerRe: Flat NumericUpDown Pin
Maciej Los23-Apr-18 10:08
mveMaciej Los23-Apr-18 10:08 
QuestionGetting Run-time error '9' for Subscript out of range Pin
Member 1378560917-Apr-18 23:41
Member 1378560917-Apr-18 23:41 
AnswerRe: Getting Run-time error '9' for Subscript out of range Pin
Richard MacCutchan17-Apr-18 23:58
mveRichard MacCutchan17-Apr-18 23:58 
Questionextracting data problem to ms exel and access database location different in some system Pin
lazy_dude16-Apr-18 2:15
lazy_dude16-Apr-18 2:15 
AnswerRe: extracting data problem to ms exel and access database location different in some system Pin
Jochen Arndt16-Apr-18 3:32
professionalJochen Arndt16-Apr-18 3:32 
Starting with Windows Vista, folder virtualisation has been intruduced. System folders like the program files folder are protected from being used for user files and access is redirected to the VirtualStore of the current user.

But even with older Windows versions it was not recommended to use the program files folder for user data.

Your problem is that the installation program is run with administrative priviliges and can therefore create files and folders in the program files directory. But accesses from the application itself will be redirected to the VirtualStore folder.

That you did not get any error message when the database can't be found is another sign of bad application design (besides storing user data at the wrong place).

If you have access to the source of the application and the installation program you should update both to use a common data folder. The most common is
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)

If not, you should ask the developer for an update.

As a last resort, execute the application with administrator priviliges.
GeneralRe: extracting data problem to ms exel and access database location different in some system Pin
lazy_dude18-Apr-18 4:23
lazy_dude18-Apr-18 4:23 
GeneralRe: extracting data problem to ms exel and access database location different in some system Pin
Jochen Arndt18-Apr-18 4:50
professionalJochen Arndt18-Apr-18 4:50 
GeneralRe: extracting data problem to ms exel and access database location different in some system Pin
lazy_dude18-Apr-18 4:51
lazy_dude18-Apr-18 4:51 
GeneralRe: extracting data problem to ms exel and access database location different in some system Pin
Richard MacCutchan18-Apr-18 5:55
mveRichard MacCutchan18-Apr-18 5:55 
GeneralRe: extracting data problem to ms exel and access database location different in some system Pin
lazy_dude23-Apr-18 6:55
lazy_dude23-Apr-18 6:55 
GeneralRe: extracting data problem to ms exel and access database location different in some system Pin
Richard MacCutchan23-Apr-18 7:00
mveRichard MacCutchan23-Apr-18 7:00 
Questionmy program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Member 1280941214-Apr-18 13:38
Member 1280941214-Apr-18 13:38 
AnswerRe: my program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Richard MacCutchan14-Apr-18 21:10
mveRichard MacCutchan14-Apr-18 21:10 
GeneralRe: my program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Member 1280941215-Apr-18 8:01
Member 1280941215-Apr-18 8:01 
AnswerRe: my program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Eddy Vluggen17-Apr-18 0:08
professionalEddy Vluggen17-Apr-18 0:08 
GeneralRe: my program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Member 1280941218-Apr-18 12:40
Member 1280941218-Apr-18 12:40 
QuestionHow to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Member 136918614-Apr-18 4:20
Member 136918614-Apr-18 4:20 
AnswerRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Gerry Schmitz4-Apr-18 4:49
mveGerry Schmitz4-Apr-18 4:49 
AnswerRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Dave Kreskowiak4-Apr-18 4:57
mveDave Kreskowiak4-Apr-18 4:57 
AnswerRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Richard Deeming4-Apr-18 5:04
mveRichard Deeming4-Apr-18 5:04 
GeneralRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Mycroft Holmes4-Apr-18 13:16
professionalMycroft Holmes4-Apr-18 13:16 
AnswerRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Richard MacCutchan4-Apr-18 7:05
mveRichard MacCutchan4-Apr-18 7:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.