FORUM DE DISCUSSION SUR LE LANGAGE PANORAMIC
Vous souhaitez réagir à ce message ? Créez un compte en quelques clics ou connectez-vous pour continuer.
FORUM DE DISCUSSION SUR LE LANGAGE PANORAMIC

Développement d'applications avec le langage Panoramic
 
AccueilAccueil  RechercherRechercher  Dernières imagesDernières images  S'enregistrerS'enregistrer  MembresMembres  Connexion  
Derniers sujets
» Logiciel de planétarium.
Drive in Basic Emptypar Pedro Sam 23 Nov 2024 - 15:50

» Un autre pense-bête...
Drive in Basic Emptypar Froggy One Jeu 21 Nov 2024 - 15:54

» Récupération du contenu d'une page html.
Drive in Basic Emptypar Pedro Sam 16 Nov 2024 - 14:04

» Décompilation
Drive in Basic Emptypar JL35 Mar 12 Nov 2024 - 19:57

» Un album photos comme du temps des grands-mères
Drive in Basic Emptypar jjn4 Mar 12 Nov 2024 - 17:23

» traitement d'une feuille excel
Drive in Basic Emptypar jjn4 Jeu 7 Nov 2024 - 3:52

» Aide-mémoire mensuel
Drive in Basic Emptypar jjn4 Lun 4 Nov 2024 - 18:56

» Des incomprèhension avec Timer
Drive in Basic Emptypar Klaus Mer 30 Oct 2024 - 18:26

» KGF_dll - nouvelles versions
Drive in Basic Emptypar Klaus Mar 29 Oct 2024 - 17:58

» instructions panoramic
Drive in Basic Emptypar maelilou Lun 28 Oct 2024 - 19:51

» Figures fractales
Drive in Basic Emptypar Marc Ven 25 Oct 2024 - 12:18

» Panoramic et Scanette
Drive in Basic Emptypar Yannick Mer 25 Sep 2024 - 22:16

» Editeur d étiquette avec QR évolutif
Drive in Basic Emptypar JL35 Lun 23 Sep 2024 - 22:40

» BUG QR Code DelphiZXingQRCode
Drive in Basic Emptypar Yannick Dim 22 Sep 2024 - 11:40

» fichier.exe
Drive in Basic Emptypar leclode Ven 20 Sep 2024 - 19:02

Navigation
 Portail
 Index
 Membres
 Profil
 FAQ
 Rechercher
Rechercher
 
 

Résultats par :
 
Rechercher Recherche avancée
Novembre 2024
LunMarMerJeuVenSamDim
    123
45678910
11121314151617
18192021222324
252627282930 
CalendrierCalendrier
-25%
Le deal à ne pas rater :
PC Portable Gamer 16,1” HP Victus 16 – 16 Go /512 Go
749.99 € 999.99 €
Voir le deal

 

 Drive in Basic

Aller en bas 
2 participants
AuteurMessage
Severin




Nombre de messages : 547
Localisation : Braunschweig / Germany
Date d'inscription : 13/12/2010

Drive in Basic Empty
MessageSujet: Drive in Basic   Drive in Basic EmptySam 12 Nov 2011 - 0:10

Hallo Klaus,

ich habe ein Programmtool in QB64. Es zeigt alle Laufwerke und auch
das Betriebssystem an. Es gehören noch einige DLL's dazu.
Ich kann diese hier nicht einstellen. Wenn du Interesse hast kann ich diese
als E-Mail schicken. Ich stelle mal das Programm ein.
Ist das auch in Pamoramic möglich ?
Severin

Code:

'This uses a Kernel32 API to list all valid drives on your PC, and shows the drive types.  Even shows correct when I have a thumb drive attached.

'- Dav


Code:

'=============
'GETDRIVES.BAS
'=============
'Uses Kernel32 API to lists all available drives on system.
'Shows the drives type: HD/CD/DVD/RAM/NET/Removable/Unknown
'Coded by Dav SEP/2011

DECLARE LIBRARY '== Kernel32 API
    FUNCTION GetDriveTypeA (nDrive AS STRING)
END DECLARE

PRINT "============"
PRINT "VALID DRIVES"
PRINT "============"

'== Step through letters A -Z

FOR A = 65 TO 90
    Drive$ = CHR$(A)
    Result = GetDriveTypeA(Drive$ + ":\")
    SELECT CASE Result
        CASE 0: PRINT Drive$; ": "; "Unknown Drive Type"
        CASE 2: PRINT Drive$; ": "; "Removable Drive"
        CASE 3: PRINT Drive$; ": "; "Hard Drive"
        CASE 4: PRINT Drive$; ": "; "Network Drive"
        CASE 5: PRINT Drive$; ": "; "CD/DVD Drive"
        CASE 6: PRINT Drive$; ": "; "RAM Drive"
    END SELECT
NEXT
 

DECLARE LIBRARY
    FUNCTION GetVersion ()
END DECLARE

'Just grab the "build" number...
b$ = LTRIM$(RTRIM$(STR$((GetVersion AND &HFFFF0000) \ &H10000)))


PRINT "The Windows version is: ";
PRINT
PRINT b$


IF INSTR(1, b$, "095") THEN PRINT "Windows 95"
IF INSTR(1, b$, "1111") THEN PRINT "Windows 95"
IF INSTR(1, b$, "1381") THEN PRINT "Windows NT"
IF INSTR(1, b$, "1998") THEN PRINT "Windows 98"
IF INSTR(1, b$, "2222") THEN PRINT "Windows 98 SE"
IF INSTR(1, b$, "3000") THEN PRINT "Windows ME"
IF INSTR(1, b$, "2195") THEN PRINT "Windows 2000"
IF INSTR(1, b$, "2600") THEN PRINT "Windows XP"
IF INSTR(1, b$, "3790") THEN PRINT "Windows Server 2003"
IF INSTR(1, b$, "6000") THEN PRINT "Windows Vista/Server"
IF INSTR(1, b$, "6001") THEN PRINT "Windows Vista/Server"
IF INSTR(1, b$, "6002") THEN PRINT "Windows Vista/Server"
IF INSTR(1, b$, "7600") THEN PRINT "Windows 7"
IF INSTR(1, b$, "7601") THEN PRINT "Windows 7 32 Bit"
Revenir en haut Aller en bas
Klaus

Klaus


Nombre de messages : 12331
Age : 75
Localisation : Ile de France
Date d'inscription : 29/12/2009

Drive in Basic Empty
MessageSujet: Re: Drive in Basic   Drive in Basic EmptySam 12 Nov 2011 - 18:55

Ja, das ist auch in Panoramic möglich, ist aber viel komplizierter. Man kann DLL's aufrufen, aber die direkte Rückgabe von Stringwerten ist nicht möglich. Man müsste eine Elphi-DLL schreiben, die als Wrapper für Dine DLL's dient.
Revenir en haut Aller en bas
http://klauspanoramic.comxa.com/index.html
 
Drive in Basic
Revenir en haut 
Page 1 sur 1
 Sujets similaires
-
» Dir ok -- Drive ?
» Alerte My Drive
» jeu de des basic
» Basic.
» AMELIORATION DE PANORAMIC

Permission de ce forum:Vous ne pouvez pas répondre aux sujets dans ce forum
FORUM DE DISCUSSION SUR LE LANGAGE PANORAMIC :: Activité des sites créés par les Panoramiciens. :: Le site de Klaus-
Sauter vers: