Replies: 4 comments 3 replies
|
Clone the repository locally. open Ms Excel click “Import File” and browse to the repository. |
1 reply
|
Are you on Mac or Windows? I did it successfully on windows using a copy that was on my computer, not from the repository. I’ll try downloading the versions from GitHub to make sure they work. |
1 reply
|
I tried it and it did the same thing for me. If I had to guess, I’d say the frm file has unix line endings instead of windows. |
0 replies
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I have been trying to import the files into the project in many ways,
but every time I am importing the Login form it is imported as module
instead.
Import - file - "Login.frm"
When looking at the code of the module it looks like that:
I have no idea, what causes this behaviour. Thanks for feedback.
VERSION 5#
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} Login
Caption = "Please Log In"
ClientHeight = 1920
ClientLeft = 120
ClientTop = 465
ClientWidth = 2295
OleObjectBlob = "Login.frx":0000
StartUpPosition = 1 'CenterOwner
End
Public Ready As Boolean
Private Sub Form_Load()
Me.Show
Ready = False
Call Wait
'Label1.Visible = True
End Sub
Public Function Wait()
Do While Ready = False
DoEvents
Loop
End Function
Private Sub LoginButton_Click()
Ready = True
Me.Hide
End Sub
All reactions