Questions tagged [programmatically-created]

Any object in an application created using a computer program rather than created manually using something in the userspace.

General Definition

Any object in an application created using a computer program rather than created manually using something in the userspace.

GUI Elements

In general, elements are declared in inside their accompanying tags in / files or in any other derivatives ( , , , , , and many others).

Programmatically created are those elements that are coded in contexts that need to be compiled to take effect at . They could be created at by a click of a as an example, where they would be coded inside a click listener for that .

438 questions
2
votes
1 answer

How to programmatically add Facets to PanelBox in Oracle ADF

I have a requirement in which i have to dynamically add facets to a panel box layout and then add elements to the same such as text and buttons. I have searched multiple forums but to no avail. I have tried the following code as well: RichPanelBox…
Fr_nkenstien
  • 1,923
  • 7
  • 33
  • 66
2
votes
1 answer

Programmatically created spinner doesn't open

I created a spinner programmatically: ArrayAdapter medicineArrayAdapter = new ArrayAdapter(MedicineActivity.this, android.R.layout.simple_spinner_dropdown_item,…
GingerHead
  • 8,130
  • 15
  • 59
  • 93
2
votes
1 answer

How to add UIView into UIScrollView in iOS (View having dynamic content )

I want to create a scrollView having many sub views as shown in image. All views having a labels & image within it. Number of views add in scrollView are dynamic. And data of that views is also dynamic. So that I can't make a static view in program…
1
vote
1 answer

Toggling an UISwitch Programmatically

I'm trying to toggle an UISwitch through an objc function, however the switch is not recognizing the UITapGestureRecognizer I implemented. StatusAvailabilityCell // MARK: - Properties lazy var toggle: UISwitch = { let toggle = UISwitch() …
1
vote
0 answers

Store arguments of a command in variable

I am trying to store the arguments of a command in a string instead of calling the function directly with the parameters but it seems that Powershell is not handling the string properly ffmpeg -v quiet -stats ... # works $var = "-v quiet…
1
vote
3 answers

ContentView isn't Showing up Inside ScrollView

I'm having trouble getting my ContentView to show up inside my ScrollView and I don't know what I'm doing wrong to make it not visible. In my screenshot down below, the purple view is my ScrollView which is showing perfectly, and as you will see in…
1
vote
1 answer

Programmatically create and listen for multiple signals and a ticking interval with tokio

I'm trying to programmatically listen to multiple signals and a ticking interval. To clear things up, here is the code I have currently: use std::time::Duration; use tokio::signal::unix::SignalKind; #[tokio::main] async fn main() -> Result<(),…
weisbrja
  • 164
  • 10
1
vote
2 answers

Cost of Programmatic Access to MQL in Google Cloud

I would like to create MQL queries through Cloud Monitoring API in Google Cloud and analyze let's say 1Million datapoints per month. I can not find any data on how much this will cost me except the $0.01 per 1,000 API calls. What is the way to…
1
vote
1 answer

Why my 2D UIViews don't appear on screen?

I'm trying to make UIView that contains 12x7 UIViews with margins. I thought that the best way gonna be make 7 Vertical Stacks and then add all them on one big Horizontal stack. And I coded it, but problem is that this Horizontal Stacks doesn't…
1
vote
0 answers

How to Access Narrator Programmatically in Xamarin.forms?

How to Access CustomText in Xamarin.forms? I'm trying to access narrator by referring https://learn.microsoft.com/en-us/learn/modules/narrator-and-voice-input/2-audio-descriptions-with-narrator. I'm facing difficulty in Accessing narrator…
1
vote
1 answer

Custom UIButton(CheckBox) add responder to action iOS SDK

I have custom UIButton class: CheckBox.h @interface CheckBox : UIButton { BOOL isChecked; IBOutlet UIWebView *webview; IBOutlet UIImageView *img; NSMutableString *labelText; NSInteger fontSize; NSInteger heightWebView; } @property…
itworksinua
  • 127
  • 2
  • 14
1
vote
1 answer

How to set properly UISegmentedController and imageView programmatically?

I'm trying to create UISegmentedController and imageView programmatically. ImageView should be placed right under UISegmentedController, but it overlaps UISegmentedController. Could you please say what did I wrong with constraints? private let…
Abrcd18
  • 155
  • 1
  • 13
1
vote
2 answers

Gatsby-plugin-image with programmatically created pages issue

I'm creating pages programmatically in gatsby from MD files. the issues I'm having is I'm using the from gatsby-plugin-image to pull the image from the frontmatter of said MD file when the page loads the img is not rendered and i get and error…
Brandon.b
  • 147
  • 2
  • 9
1
vote
1 answer

Safari ignoring inline styles for keyframe animations

When setting @keyframes using CSS transform in Safari (desktop and iOS) with just an end frame, and then updating the starting transform position programmatically (inline via JS), Safari appears to continue to execute the animation from the initial…
Oliver
  • 2,930
  • 1
  • 20
  • 24
1
vote
1 answer

Binding column width programmatically in UWP?

I am trying to create columns that can be resized by the user during runtime just like in excel. However, I am creating fields dynamically and don't know how to bind the programmatically created column's width to the width of my column created in…
vnmendoza
  • 13
  • 5