Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [box]

Avoid using this tag. It has multiple unrelated meanings and therefore could be confusing.

0 votes
0 answers
15 views

Migrating Legacy App to Web with Direct Document Links on Box.com

I have been tasked with developing a web application to replace a legacy desktop application that has been in use for 20 years. I am encountering challenges in replicating a specific functionality ...
OrangBatak's user avatar
0 votes
1 answer
22 views

Send CSV File to Box Folder Using KingswaySoft Box Destination

I'm trying to automate the process of sending a csv to a Box folder from withing Visual Studio 2019 using the KingswaySoft Box Destination component. My Box connection manager connects successfully. ...
KACKER's user avatar
  • 1
0 votes
1 answer
61 views

Why is it not very reliable for rust to pass data on the heap through the Box method?

I want to pass struct data to my own dll. To ensure that data is not dropped, I use Box to move the struct to the heap, and get the pointer by Box::into_raw. Unfortunately sometimes I encounter some ...
Jayden's user avatar
  • 5
0 votes
0 answers
42 views

How to create a draggable vertical line in pinescript - like in Gann Box

How do I create a draggable vertical line in pinescript? I managed to create simple indicator based on Gann Box. I'm facing some issues since I'm a beginner at Pine Script coding: How do I move the ...
Colin Kal's user avatar
0 votes
0 answers
19 views

How to instantiate recursive type with heap pointers? [duplicate]

Consider the following structs: struct Foo { val: i32, bar: Box<Bar>, } struct Bar { val: i32, foo: Box<Foo>, } I tried to instantiate it as: let foo = Box::new(Foo { ...
Some Name's user avatar
  • 9,347
0 votes
2 answers
83 views

How can I improve my program to avoid shaking the box

I can't eliminate shaking of the box which is predict to displace by using upper buttons. What can I do to avoid the shaking? I want to control the red box by buttons placed above, so what can I do to ...
Szymon Howorus's user avatar
0 votes
0 answers
56 views

SSLError when I try to upload files into Box using Box API (JWT Auth)

I get the following error when I try to upload files into Box using JWT Auth requests.exceptions.SSLError: HTTPSConnectionPool(host='upload.box.com', port=443): Max retries exceeded with url: /api/2.0/...
Sai Jaswanth's user avatar
0 votes
1 answer
88 views

Flutter Hive Box delete function doesn't work

class HomeCubit extends Cubit<HomeState> { HomeCubit() : super(HomeInitial()); var savedBox = Boxes.savedBox; addSavedProduct(ProductModel product) { savedBox.add(product); print(...
Scouser's user avatar
3 votes
1 answer
106 views

How can I return an impl trait from a function dynamically when this trait contains a method which returns itself an impl trait?

As the following code shows: trait T2impl {} struct S4T2impl; impl T2impl for S4T2impl{} trait TimplMethod { fn f() -> impl T2impl; } struct S4TimplMethod; impl TimplMethod ...
Frank Schwidom's user avatar
0 votes
1 answer
48 views

Unable to make draggable box Andoid Studio, Kotlin

I have code I want to add draggable box but it is not able to create draggable box, Something is missing in code a code I want to make draggable box but in screen it show nothing val state = ...
Artier's user avatar
  • 1,673
0 votes
0 answers
44 views

Collapsible box not responding in navbarPage

I'm currently developing a compact R Shiny application, but I've encountered an issue where the collapsible boxes fail to collapse upon clicking. Despite attempting different solutions, the problem ...
Koffi Frederic Sessie's user avatar
0 votes
1 answer
23 views

How to make the log in section can go in to an box?

<body> ... <style> #box { width: 500px; height: 500px; border: 1px solid black; } ... </style> ... <div class="Log-in"> <div id="&...
Coder's user avatar
  • 11
0 votes
0 answers
55 views

Brave browser dark mode issue, result came in a white box inside dark mode browser

that white part in the image appears sometimes when the search result came. Browser: Brave. Assumption: this cames after I installing an extension of dark mode. But I uninstall the extension but still ...
Margin wings's user avatar
0 votes
0 answers
10 views

string in the search box for webview21

with old WebBrowser1 I can make WebBrowser1.Document.GetElementById("htlm string").InnerText = TextBox1.Text where htlm string is the string for find the search box of google or other engine ...
StefanoBon's user avatar
0 votes
1 answer
197 views

Uploading Files to Box via AWS Lambda Function - Issues with Multipart Parsing

I have an AWS Lambda function written in Python that is supposed to upload files to Box.com using their API. The Lambda function is triggered by an HTTP request with a multipart/form-data payload. The ...
Mark's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
65