B4A Code Snippet Check Internet connection + Know connection type (WiFi/Cell) - Sergio Haurat    Jun 22, 2024   (9 reactions) SOLUTION HERE
https://www.b4x.com/android/forum/threads/b4x-sp-inetstatus-check-if-internet... for some time (since sdk 28/29)
Sub Process_Globals
Type tpeCheckInternet(blnIsOnline As Boolean... B4A Code Snippet B4X Check Internet available + type (WiFi/Cell/LAN) + IsValidIP + IsValidURL - Sergio Haurat    Jun 22, 2024   (9 reactions) SOLUTION HERE https://www.b4x.com/android/forum/threads/b4x-sp-inetstatus-check-if-internet-is-available-type-wifi-cell-lan.161750/ Class version I share with you this code that works in B4A, B4I and B4J. Requires B4A -> Network, B4I -> iNetwork, or B4J -> jNetwork If you use this class you will be able to know if there is an active Internet connection, type of connection and the IP... it is WIFI or CELL. You can also check if an IP is valid using IsValidIP(IP As String). It can be IPv4... B4A Code Snippet [B4X] Check if Internet interfaces are enabled and internet status + type (WiFi/Cell/LAN) - Sergio Haurat    Jul 3, 2024   (10 reactions) -b4a-b4j-and-b4i.161861/
https://www.b4x.com/android/forum/threads/b4x-sp-ifstatus-check-if-interface...
Private btnCheck As Button
End Sub
Private Sub B4XPage_Created (Root1 As B4XView)
Root = Root1... B4A Question Check Internet connection - robife    Mar 24, 2013 Hi guys
I need help to check internet connection is ON or OFF
I try eks.
If CheckConnection...
Msgbox("You didn't connect internet", "Error")
End If
Sub CheckConnection... B4J Question [BANano] CheckInternetConnectionWait False on iOS but works on Android - Mashiane    Aug 24, 2024 app. The android version does not render an internet connection error whilst the ios phone does.
What could I be missing? Both are using the chrome browser.
'do we have an internet connection
Dim hasInternet As Boolean = banano.CheckInternetConnectionWait
If hasInternet Then... B4A Question Checking internet connection - ciginfo    Apr 1, 2024 Hello,
In 2024 What is the best way to check internet connection (wifi, 4G) when application starts.
Thanks you... B4A Question Check Internet Access - barx    Jul 14, 2014 I have looked through the relevant threads on the forum regarding checking connections... As HttpJob
HttpAction.Initialize("CheckConnection", Me)
HttpAction.Download(Shared... B4A Code Snippet check internet connection - Hamied Abou Hulaikah    Nov 10, 2018   (5 reactions)   tags: Internet Async, Internet I made some modification to be work fine even if you are connected to network but no internet ..
Sub Connected As Boolean
'Requires Phone Library
Dim p As Phone
Dim Response, Error... B4A Question Check internet connection and permissions - asales    Oct 15, 2018 I use this code to check if there is an internet connection:
Sub CheckConnection As Boolean... ACCESS_NETWORK_STATE):
Sub CheckConnection As Boolean
Dim res As Boolean = False
Dim r...")
End If
Return res
End Sub
My question is:
to avoid get the permission to check internet connection with the phone library, the second function is the best option?... B4i Question iOS version: Check Internet connection + Know connection type (WiFi/Cell) - Sergio Haurat    Jun 22, 2024 SOLUTION HERE https://www.b4x.com/android/forum/threads/b4x-sp-inetstatus-check-if-internet... <description>Checks the reachability of the internet connection.</description> </function...: Reachability Sub Process_Globals Type tpeCheckInternet(blnIsOnline As Boolean, strType As String) End Sub Public Sub CheckInternet As tpeCheckInternet Dim ci As tpeCheckInternet ci...="hostname" type="NSString*"/> <description>Checks the reachability... Page: 1   2   3   |