Private Declare Function WNetConnectionDialog Lib "mpr.dll" (ByVal hwnd As Long, _ ByVal dwType As Long) As LongPrivate Declare Function WNetDisconnectDialog Lib "mpr.dll" (ByVal hwnd As Long, _ ByVal dwType As Long) As Long ' show the dialog to connect/disconnect a network disk'' If the argument is True it shows the ConnectDialog,' otherwise it shows the Disconnect dialog' the second argument is the hWnd of the parent dialog''The function returns False if the dialog is canceled, True otherwise.Function ShowNetworkDiskConnectionDialog(ByVal ConnectDialog As Boolean, _ Optional ByVal hwnd As Long) As Boolean Const RESOURCETYPE_DISK = &H1 If ConnectDialog Then ShowNetworkDiskConnectionDialog = (WNetConnectionDialog(hwnd, _ RESOURCETYPE_DISK) = 0) Else ShowNetworkDiskConnectionDialog = (WNetDisconnectDialog(hwnd, _ RESOURCETYPE_DISK) = 0) End IfEnd Function

The Future of iOS App Development: Trends to Watch
When it launched in 2008, the Apple App Store only had 500 apps available. By the first quarter of 2022, the store had about 2.18 million iOS-exclusive apps. Average monthly app releases for the platform reached 34,000 in the first half of 2022, indicating rapid growth in iOS app development.