Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Wertübergabe Bytearrays von einer Sub

Empfohlene Antworten

Hallo ,

habe ein typisches Anfängerproblem: Definiere Byte-Arrays und möchte bei einen Klick auf den Button1 den 1. Werte anzeigen lassen. :rolleyes:

Public Class Form1

Inherits System.Windows.Forms.Form

Public test() As Byte = {234, 231}

Public c As Byte

Sub anzeige()

TextBox1.Text = c

End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

test(0) = c

End Sub

Danke für die Hilfe

Hallo,

der Code ist soweit OK. Das einzige was mir auffällt ist folgendes:


test(0) = c

c wird aber kein explizieter Wert zugeordnet und ist somit immer 0.

Und somit wird durch den Klick test(0) immer auf 0 gesetzt.

Gruß,

Thomas

:)

Dein Fehler ist erstens es muss andersrum nämlich:


c = test(0)
[/PHP]

und zweitens musst du die Sub anzeige auch aufrufen also ca. so:

[PHP]
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

c = test(0)
anzeige()

End Sub

Danke Euch :-)

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Konto

Navigation

Suchen

Suchen

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.