Hi Guys,

i am looking for a little direction on an issue that is poundering on my mind. I want to prevent a form from loading if the systems regional datetime settings format for the date is not in the form of dd/MM/yyyy.

any suggestions will be welcome.

Recommended Answers

All 2 Replies

Just dropping in to say thanks i was able to accomplish my task utilizing the site you recommended. i have enclosed code snippets

Imports System.Globalization 

 Dim culglobal As New CultureInfo("en-US")

    Dim culclone As CultureInfo = CType(culglobal.Clone, CultureInfo)


If culclone.DateTimeFormat.ShortDatePattern <> "dd/MM/yyyy" Then
            MessageBox.Show("Access has been denied, your system's regional settings is incorrect. Please contact your Administrator ", "Regional Settings Error", MessageBoxButtons.OK, MessageBoxIcon.Warning)
            Me.Dispose()
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.