Where is code I get in MS ACCESS in MDB or MDE file extension [closed] - sql

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I m newly to the MS access, I didn’t getting where is the code see and edit. So I can login to my application.
When try open the my application in .MDE in MSAccess I am getting authorisation error-> your login is unauthorised please try again later.
Please answer me

An MDE file is an old compiled version of an MDB database. As such you cannot normally get at the code, so if you don't have the original MDB file you are in trouble! These people provide a commercial service to restore a MDB from a MDE. I have never needed to use them, so cannot comment on how reliable the result is.

Open the MDB file.
Press Alt+F11 to open the VBE, the VBA code editor.
That's where your code is.

Related

"Application not found" Error while trying to login to JetBrains account from IntelliJ Idea [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed last year.
Improve this question
When I click on Login, it shows this error
This is Windows-specific issue. It happens if the default browser is not set or the html file association and/or http protocol associations are not correctly set. The same error may occur when double-clicking an Internet Shortcut (.URL) file in the system.
To resolve the problem, use Default Programs to reset the default Web browser preference.

Can't create a Kotlin class or file [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
I just started to learn Kotlin, but the course that I'm using seems to be outdated.
When I try to follow its steps to create a class or file, the option is not there, instead there are Kotlin Script ou Worksheet.
trying right click on src
neither right clicking on main
I'm using IntelliJ 2021.1.2 and JDK version 16
you should choose android not project first
enter image description here

excel vba Getting error "Out of Memory" [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I am working on excel VBA. In my code I am downloading Multiple files say 50 one by one.
What I am doing, I'm downloading first file making changes doing some calculation and saving it as xlsx and after that downloading another file and doing calculation saving it as xlsx and so on. So After downloading 26-27 files I am getting "Out of Memory" Error.
Can anyone suggest me how to clear memory after downloading each file.
Thank you so much in advance
Perhaps consider setting your variables to Nothing? That way the objects will be destroyed and memory resource released.
There are a couple of posts that may give you some more insights. Worth checking them out.
When should an Excel VBA variable be killed or set to Nothing?
Excel VBA: Does destroying a collection of objects destroy every single object?

Open file with double click with my program [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I programmed a vb.net program to browse .apk file and install in on emulator ,
now i want to make it a default program to open .apk files
problems :
- how to make program that can open a file !
- how to get opened file path
thanks for your time :)
The whole "Double-Click to Open" part is done by Windows, not by your program. If you double-click a file Windows checks the registry for settings on what to do with the program. You need to set these settings so that your program is the default program for the datatype.
Try google file association windows.
The filename of the file that was double-clicked is passed to the program through a command line parameter. You can access these through
My.Application.CommandLineArgs
Use this to then open the file in your program.

Creating standalone help files [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
Currently I'm wrapping up an application at the moment, and I'm at the stage where I need to document the application for anyone who wants to use it.
At this point, I just need something that will tell users how to use my program. Even though I tried to design it as user friendly as possible, I have a group of users who aren't tech savvy and need something they can refer to.
So my question is basically: What can I do to easily create help files?
This answer will pretty much assume you're using some version of Microsoft Visual Studio, although the first approach is generic enough to work on any OS with a HTML rendering engine.
You could create a series of HTML files, store them locally on the user's computer, and when the user calls up help, load those in the default browser (this being the same kind of approach Microsoft took with Visual Studio 2010). However, I think that's kind of a hacky solution.
There used to be a product called HelpStudio Lite; unfortunately it's been discontinued.
If you're willing to use Microsoft Help 2.0 (which was used through Visual Studio 2008 and some other products), you might want to take a look at http://www.mshelpwiki.com/wiki/tiki-index.php?page=Help2. Evidently it's some kind of wiki detailing how to put together your own Help 2.0 documents. I'm not sure if it will work with Visual Studio 2010 (this is because VS 2010 uses a new help system).
I really wish Microsoft would get their act together on the help documentation front.
EDIT: You may want to look at Sandcastle Help File Builder. I found it recommended at https://stackoverflow.com/questions/6023/what-are-good-tools-for-creating-compiled-html-help-files-chm... actually you may want to go read that thread as well.