I am a valid being
Why does that sound funny.
What if someone said to me, 'you sir, are not a valid being'.
Sorry but we are not accepting any more applications this week for valid beingness.
Have a nice day..
Why does that sound funny.
What if someone said to me, 'you sir, are not a valid being'.
Sorry but we are not accepting any more applications this week for valid beingness.
Have a nice day..
The "AutoIndex on Import/Create" Feature. Who needs this. I imported my tables into a new database and it added so many new indices that it deleted some relationships, to make space for the indices I guess.
Disappointing that amazon is 20% more on items such as popular shampoos than Shoppers Drug Mart.
If you don't price compare amazon will take advantage of you.
Honest, unfiltered self observation during this life will help prepare one for what comes after.
I can't imagine what a reincarnational tree might look like. We could jump from one family tree to another, throughout the centuries, in different parts of the world. It makes me think that from a reincarnational pov we are probably all more related than we imagine.
Is it ok to relate an OBE that I had where I didn't use the tapes?
I have since purchased the hemi-sync tapes but have not yet succeeded in having the same depth of experience.
I'm new here and I know that both the afterlife and beforelife exist, at least, I have my own proof.
Also, communication with those that see things that we may not see, also exists, in various ways, from visions to dreams to coincidences to visitations.
The unknown may seem frightening at times, but i've learned that nothing can harm me unless I allow myself to get involved, so I am never at the mercy of what I don't know.
With ability comes responsibility, but nature has built-in protections, otherwise someone would be able to destroy everything.
We have free will, no one is forced to participate.
The decisions we make on the other side may seem inexplicable now, but are for our own good.
Man, in his weakest state, forces his will upon others, not understanding the coarse he has set up for himself.
No one is perfect, and yet everything is perfect
What I tell you I swear is the truth.
I went out of body while wide awake, healthy and sober, and travelled to a place where I saw what appeared to be a large card file, where each card had the vital statistics for a life, name, date of birth and death, place of birth.
I actually floated above the file, and the cards would part, and I could enter a life and 're-live' it in a way that would completely blow your mind.
It was like I had a god-like view of the life, I could feel everything totally from everyone and know everything.
I was a female in my last life in eastern europe where my ancestors are from.
I was a maid/slave in a land owner's country estate house.
The life I am having now is far better.
So i know without a doubt that we live many lives, or that at least I have.
It makes sense because why would we only live one life.
How can we grow in wisdom and experience from just one short life.
This current life has been peppered with unusual experiences, i always look forward to what may happen next.
I hope I don't get banned from this subreddit because its a drag to have your posts removed.
I was recently banned from r/afterlife because I speak like I am an authority on things, and yet I am only talking from experience. A lot of people seem to be afraid that they might get an afterlife review, so the last thing they want to hear is that they will be given that opportunity because it's a natural part of our learning/awakening process.
So that leaves the movies and to be honest I didn't mind paying for prime just to get the movies however the pay extra for no commercials went too far. They lost me over a couple of extra dollars which I guess they really need. I think their marketing strategy is a loser.
If you buy something and before you even receive it you notice the price has dropped by 30 percent. You would like to return it and purchase it again at the lower price, right? But then if you're honest about it, they want a restocking fee that makes it not worth returning. So what do you do? You open the box and say it's damaged so you don't get a restocking fee. Duh. Lol.
Access should have some global events, such as OnAnyFormOpen or OnAnyError.
Their data connection around Brampton is totally unstable and they keep raising the price of my plan and they only offer 1 plan for people that have their own phone, a plan which has way more data than I need and too expensive. What a joke, years ago you had to pay through the nose for data and now all they offer is way too much data. Also, home internet gets slow during the evening and stops working occasionally.
How do you guys display a logo in your reports?
I use an unbound image control, and when the report opens, I pass the image control to a procedure that sets the picture property to the path of the logo (jpg or bmp).
I have error trapping in all my procedures and functions, and error 2114 is the only error I ever see, and it happens usually once a day, and it can happen on any machine, in any report.
One of the users suggested that it might be associated with the error 'cannot open any more databases' - if they get that error and then try to run a report, it is simply out of memory, but I can't seem to replicate the error myself.
Below is a sample of the code.
It doesn't matter if myPath points to a jpg or bmp, the logo is a small file less than 200k on the server.
Image1 is an embedded image object with no control source, that is used to display a logo.
Private Sub Report_Open(Cancel As Integer)
Call myDisplayLogo(Me!Image1)
End Sub
Public Sub myDisplayLogo(ByRef objImage As Access.Image)
On Error GoTo Error_myDisplayLogo
Dim myPath As String
If objImage Is Nothing Then Exit Sub
If TypeName(objImage) <> "Image" Then Exit Sub
myPath = myDatabasePath() & myLogo()
If objImage.Picture <> myPath Then
objImage.Picture = myPath
End If
Exit_myDisplayLogo:
Exit Sub
Error_myDisplayLogo:
LogError Err.Number, Err.Description, "myDisplayLogo", , False
Resume Exit_myDisplayLogo
End Sub
But lately i find prices the same or higher than other local sellers.
So why wait longer for delivery and endure their perplexing discount structure.
Sorry temu, maybe I'll have better luck next time.
​
Hangs during commercials now and then and quite a few commercials.
Anyone had any luck designing a custom inputbox?
I discovered that docmd.openform of a modal/pop-up form as acDialog causes access vba to wait until the form is made invisible before it continues code execution.
So in the pop-up form, when you do me.visible=false, the code continues after the docmd.openform and you can then get any values from the pop-up form and then close it.
So, for example, you can make a function to ask a user for a password,
Public Function getPwd() As String
Dim myFormName As String
myFormName = "fInputBoxPwd"
getPwd = ""
If CurrentProject.AllForms(myFormName).IsLoaded Then 'if open, close the dialogue form
DoCmd.Close acForm, myFormName
End If
DoCmd.OpenForm myFormName, , , , acFormEdit, acDialog 'wait here until the form is closed or made invisible
If CurrentProject.AllForms(myFormName).IsLoaded Then 'if it was not closed (if it was made invisible)
getPwd = Nz(Forms(myFormName).Form!txtPassword.Value, "") 'get the value entered
DoCmd.Close acForm, myFormName 'now close the form
End If
End Function
Public Function isLoadedForm(ByVal strFormName As String) As Boolean
' Returns True if the specified form is open in Form view or Datasheet view.
On Error GoTo Error_isLoadedForm
Const conObjStateClosed = 0
Const conDesignView = 0
If SysCmd(acSysCmdGetObjectState, acForm, strFormName) <> conObjStateClosed Then
If Forms(strFormName).CurrentView <> conDesignView Then
isLoadedForm = True
End If
End If
Exit_isLoadedForm:
Exit Function
Error_isLoadedForm:
LogError Err.Number, Err.Description, "isLoadedForm"
Resume Exit_isLoadedForm
End Function
One has a choice, cancel prime or pay a few more dollars a month.
Easy choice,, cancel prime.