B4A Question Custom types (Structures) - HotShoe    Sep 16, 2015   (21 reactions) A Structure is an organized group of information that defines a specific data set. There are many types of structures available in B4X, including Classes, database records, Maps, and custom types. In this lesson we will focus mainly on the custom type.
Delphi users will recognize the custom type as B4A Tutorial [B4X] Public variables, custom types, ... - Erel (first post)    Dec 20, 2023   (2 reactions) Custom types are very useful and I wouldn't automatically prefer classes over types. Custom types are lighter, can be serialized and are very "simple". A custom type is a bag of fields with zero logic. You know what you are getting. This can be an advantage.
Properties vs. public variables is a mat B4A Question [b4x] ByRef or Not ByRef - THAT is the question. - teddybear (first post)    Sep 16, 2023 Agraham has already explained it very clearly in post#2, post#7, post#10. (Dim A as int) is the primitive type, (Dim A(1) as int) is the non-primitive type. B4A Question cant open file after ftp downlod. - alon (first post)    Aug 26, 2018 "audio/vorbis, Application/ogg")
types.Put("pdf","application/pdf")
types.Put("pl","Application/x-perl")
types.Put("png","image/png")
types.Put("potx","Application/vnd.openxmlformats-officedocument.presentationml.template")
types.Put("ppsx" B4A Question Open files with intent - Pooya1 (first post)    Jul 16, 2018 Put("doc","Application/msword") types.Put("docx","Application/vnd.openxmlformats-officedocument.wordprocessingml.document") types.Put("dotx","Application/vnd.openxmlformats-officedocument.wordprocessingml.template") types.Put("es","Application/ecmascript") types.Put("exe" B4A Question Howto add a "type record" in a list ? - LucaMs (first post)    Oct 28, 2023   (1 reaction) It is not difficult. Custom types are like classes. If you have created a class, then you must create objects of the type of that class, creating a variable and initializing it; only at that point will you have an object, which you could add to a List or any other structure (Map, for example). It' B4A Tutorial [B4A] [Class] [Calendar] Class wmCalendar - Android calendar manipulation based on DonManfred's explorations - walt61    Apr 19, 2022   (16 reactions) or Null if the ID doesn't exist - UpdateEvent: Attempts to update an Event and returns the number of Events that were updated - DeleteEvent: Attempts to delete an Event and returns the number of Events that were deleted - AddAttendeeToEvent: Adds an Attendee to an Event and returns the id of the ad B4A Question How to return two parameters using a resumable sub? - LucaMs (first post)    May 01, 2023   (1 reaction) It's better to create "specialized" types but you could also create a generic type: Type tTwoValues(Value1 As Object, Value2 As Object) This way you will be able to use it in many situations. B4A Question List of "Type" - Erel (first post)    Dec 14, 2022   (1 reaction) 1. Using activities instead of B4XPages.
2. As DonManfred wrong. Best to delete the global variables, hover over the type -> generate Create sub and use it:
Private Sub pnlGraph_Touch (Action As Int, X As Float, Y As Float)
Dim v As Vertex = CreateVertex(...) B4J Question node type - Cableguy (first post)    Mar 24, 2019   (1 reaction) You need to understand that complex nodes like the spinner are not base nodes, they are more like a superimposition of several nodes.
So any text based node will also be recognised as a textfield node, if it contains buttons as the spinner does, it will also be recognised as button, and so on, accor Page: 1   2   3   4   5   6   7   Powered by ColBERT |