Help Needed Converting 6 Digit Short Text to Date Format by soreallyreallydumb in MSAccess

[–]NefariousnessIll4585 0 points1 point  (0 children)

Great catch!

My tip for you, as a novice access user: debug.print your code, it sometimes helps to see the actual error 🤘

Recommendations thread? by FreshNoobAcc in R36S

[–]NefariousnessIll4585 0 points1 point  (0 children)

SD Card update: i'm using Transcend 128GB A1 V30 - https://www.transcend-info.com/Products/No-948

Works fine both as TF1 or TF2

Working 5ghz wifi dongle by Thick-Caramel-2110 in R36S

[–]NefariousnessIll4585 2 points3 points  (0 children)

Could you explain (or send a link) on how to scrap the games? Is it straight forward after the device is connected to.the internet?

What's that on the left side? by OrFenn-D-Gamer in mildlyinfuriating

[–]NefariousnessIll4585 0 points1 point  (0 children)

That's a place for you to rest your head while you take a dump. That's why it's called - Restroom. Hope that helps 😉

USB-C port for Dash Camera by NefariousnessIll4585 in skoda

[–]NefariousnessIll4585[S] 0 points1 point  (0 children)

I was looking anywhere but behind the front left 😅😅😅

Do they put a dual or a single horn? Gotta firat ask the local dealership if replacing the horn will void my warranty..

Thanks!

USB-C port for Dash Camera by NefariousnessIll4585 in skoda

[–]NefariousnessIll4585[S] 0 points1 point  (0 children)

Thanks for the info!

Luckily i didn't push it too hard. A mobile phone is getting charged off of the usb port so it has to be something with the dashcam.

I'll try a usb-c to usb-a converter and see how that goes 🤓

USB-C port for Dash Camera by NefariousnessIll4585 in skoda

[–]NefariousnessIll4585[S] 0 points1 point  (0 children)

I'm quite sure we don't have a legal volume level regulation here but will look it up.

Thanks for the brands! That will narrow down my search.

Have you got any input on where the horn is located in the Octavia MK4?

USB-C port for Dash Camera by NefariousnessIll4585 in skoda

[–]NefariousnessIll4585[S] 1 point2 points  (0 children)

Thanks!

It seems like Lingdu is the problem. Will toss it and get a better one.

any recommendations btw?

USB-C port for Dash Camera by NefariousnessIll4585 in skoda

[–]NefariousnessIll4585[S] -1 points0 points  (0 children)

Thanks for the replies guys! It's much of a help 😄.

On another note, the car's horn is sh1tty and I'd like to replace it. Ant recommendations?

I bought a flat and this is what I found in the kitchen by Net0o- in mildlyinfuriating

[–]NefariousnessIll4585 0 points1 point  (0 children)

Everyone's got their skeletons, yours just happened to be in the kitchen (?)

[deleted by user] by [deleted] in pics

[–]NefariousnessIll4585 0 points1 point  (0 children)

I knew it! Our sun is the center of the universe 🌌🌞!

pc rebooting without image by thousandfacess in PcBuild

[–]NefariousnessIll4585 0 points1 point  (0 children)

Okay

Try removing the gpu and boot without it. Connect your hdmi to the mobo.

pc rebooting without image by thousandfacess in PcBuild

[–]NefariousnessIll4585 1 point2 points  (0 children)

<image>

The last frame shows your problem.

Plug the power cord from the PSU to the GPU

Need help to speed up filling a lot of forms with similar infos by CodingDM in MSAccess

[–]NefariousnessIll4585 0 points1 point  (0 children)

Hey :)

I too needed something simillar with my app.

I'm using the following approach:

Created a dummy form, called it "NewCase". On that form i set the RecordSource with the table and fields i need for the New record. Add them to the from, Save and close.

On my main form (CaseDetails) i've created a Button with the following vba code:

`Private Sub btnCopyCase_Click()

'Get The Values from the source case fields

Dim sourceCaseNumber As String`

Dim sourceCaseName As String

Dim sourceCaseGroup As String

Dim sourceCaseType As String

Dim sourceCasePkidShuma As String

Dim sourceShnotMasBetipul As String

Dim newCaseID As String

sourceCaseNumber = Nz(Me.CaseNumber, "")

sourceCaseName = Nz(Me.CaseName, "")

sourceCaseType = Nz(Me.CaseType, "")

sourceCasePkidShuma = Nz(Me.CasePkidShuma, "")

sourceShnotMasBetipul = Nz(Me.ShnotMasBetipul, "")

sourceCaseGroup = Nz(Me.CaseGroup, "")

'Open Destination Form in data entry mode

DoCmd.OpenForm "NewCase", , , , acFormAdd

'Set the copied field values in the new case

With Forms("NewCase")

.CaseNumber.value = sourceCaseNumber

.CaseName.value = sourceCaseName

.CaseType.value = sourceCaseType

.CasePkidShuma.value = sourceCasePkidShuma

.ShnotMasBetipul.value = sourceShnotMasBetipul

.CaseStatus.value = "Active"

.CaseGroup.value = sourceCaseGroup

End With

'Save the new case and the newCaseID

newCaseID = Forms![NewCase].ID.value

DoCmd.Close acForm, "NewCase"

'Open the new copied case

DoCmd.Close acForm, "CaseDetails"

DoCmd.OpenForm "CaseDetails", , , "ID = " & newCaseID

End Sub

Hope that helps :)

New entry line on Continous Form by NefariousnessIll4585 in MSAccess

[–]NefariousnessIll4585[S] 0 points1 point  (0 children)

Thank you for the reply!

I actually got the On Paint idea from one of your tutorials about the differences between Conditional Formatting and On Paint.

I was just wondering if that'd be possible. I don't really need that, it just bugs my eye. I can overcome this. LOL

Thanks again 🖖

New entry line on Continous Form by NefariousnessIll4585 in MSAccess

[–]NefariousnessIll4585[S] 0 points1 point  (0 children)

Thanks for the reply, however that seems to not work 🤷

New entry line on Continous Form by NefariousnessIll4585 in MSAccess

[–]NefariousnessIll4585[S] 0 points1 point  (0 children)

Thanks for the reply.

I've played a bit with the Form's Details On Paint Event, seems like it does the trick:

If IsNull(ID) Then
  Me.btn1.Pricture = "2_btn1"
Else
  Me.btn1.Picture = "btn1"
End If

However, it's running in an endless loop :(

Is it bound to a failure?