multiple

  1. red30

    iOS Question Multiple choice of photos in ios

    There is an excellent iQBImagePicker library for ios. This library is very simple and allows you to solve the problem of selecting multiple photos, but as I understood from the author CaptKronos (who wrote the wrapper), this library is no longer supported. I used this library, but I ran into a...
  2. V

    B4J Question jServer - GetMultipartData file multiple not working

    Hi, I'm looking for solution for issue I found - if I use file input element with option "multiple" to be able to upload for examle 10 files in one time, then result of Dim parts As Map = req.GetMultipartData(File.DirApp & "/upload_tmp", 10000000) is always map with just last file from multipart...
  3. amorosik

    B4J Question Is possible to run a second, third, ... instance of B4J Ide?

    When I try to run a second B4J program (from second development environment) on the second ide I get this error: Waiting for debugger to connect... shell switching to alternate port: 9054 shell switching to alternate port: 9055 What exactly is the problem that makes it impossible to use a...
  4. A

    Android Question Sort a List of Type with multiple criterias [SOLVED]

    Hello All, I'm looking to sort a List of Type with multiple criterias. As far as I understand, List.SortType(), is capable to sort only one criteria. So, how to do such kind of multiple sort? Example (expected behavior) Type(Val1 as String, Val2 as String, Val3 as Int) all type values are...
  5. Sagenut

    Android Question Add CustomView by code Multiple times

    This question refer to this discussion: https://www.b4x.com/android/forum/threads/customlistview-creation-with-code-not-with-designer.117247/ In the linked discussion has been given the solution how to add a CustomView by code: making a dedicated layout with the CustomView and loading the...
  6. Sagenut

    Android Tutorial How to create more Instances of the same AVD Emulator

    Maybe this info can be useful to someone. Normally from B4A AVD Manager it's not possible to start more instances of the same AVD normally. We get a Warning that executing many times the same machine is an experimental feature and we need to modify some parameter (I did not tried it). And it's...
  7. C

    Android Question Invoking multiple activities back-to-back w/o an event

    Newbie question. I modified the Two Activities example to see if I could learn how to call multiple activities without an event. I copied Activity2, modified it slightly and named it Activity3. I was able to call multiple activities by using the click event of multiple buttons. But how do you...
  8. wonder

    Android Tutorial How to fix the multiple native libraries problem

    Error: It might happen that, when combining multiple native (JNI) libraries, your Android app will crash with an UnsatisfiedLinkError. Why does this happen? Well long-story-short, your libraries differ from each other in terms of ABIs (target CPU architecture). For a detailed explanation...
  9. P

    B4J Question How to get some information from multiple selected object in tableview?

    I made a tableview and I stored numbers in each cells as object when I clicked some cell, I got number(object info) of each cells by using below method Sub TableView1_SelectedCellChanged (RowIndex As Int, ColIndex As Int, Cell As Object) Log(Cell) End Sub Then, I am trying to get...
Top