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

Questions tagged [visibility]

Visibility is an attribute of an object. It may refer to the concept of having something visible (or not) on the graphical interface, or a symbol visibility in linkage. This tag should not be used in place of the more specific tags [memory-visibility] or [class-visibility].

visibility
1 vote
1 answer
225 views

PHP Error: Cannot access private property

I have a class like this: class Session { private Session_Database $db; public function __construct(){ // Instantiate new Database object $this->db = new Session_Database();...
1 vote
1 answer
186 views

Strip symbols from static library, or import only specific symbols during linking

The setup is the same as in my other question here. I thought a bit more about the problem, and it turns out, of all symbols exported from the libraries I'm using, I only need a few of them. In the ...
7 votes
1 answer
3k views

Hiding a surfaceview that overlaps another one

In my app I'm using several surface views (for displaying videos and google maps), displayed on the screen in the same time. Now I have to add the possibility to change the configuration (position, ...
0 votes
0 answers
39 views

Detect browser out of focus

I want to detect when the browser goes out of focus. More specifically, here is my case: I have my page opened and when I change the tab, it can be detected using visibilitychange. But when I go to ...
0 votes
0 answers
29 views

How do I hide an entire HTML page, but make the page still renders and still exist?

I'm making an extension to hide the ChromeOS bookshelf by displaying a completely hidden tab, so the device would register a window being drawn, but the user could not interact or notice it. This is ...
0 votes
1 answer
21 views

Issue WPF Datagrid maybe bug?

I am generating a datagrid dynamically and the only problem I have is that it creates an extra row at the end, it is something visual because when I delete by code the last row continues to appear. &...
7 votes
3 answers
16k views

Can't insert a record because of "malformed record literal"

The following problem has me stumped SELECT string_agg(e.enumlabel, '|') as enum_value FROM pg_type t JOIN pg_enum e on t.oid = e.enumtypid JOIN pg_catalog.pg_namespace n ON n.oid = t....
6 votes
2 answers
1k views

Flutter The cursor and the keyboard does not show when focus is true

I am using a Linkable to highlight web links, phone numbers, and email addresses from what the user types into a textfield. The first problem is that the linkable does not take textfield in, it only ...
0 votes
1 answer
22 views

SSRS Hide Columns Based on Time Expression

I have a 2 sheet report and want SSRS to hide columns from sheet1 and sheet2 based on the time of day. Steps and Issue: I added an expression to hide columns and data in sheet2. If the report runs ...
9 votes
1 answer
10k views

Hiding the symbols of a static library in a dynamic library in MAC OS X?

I am using a static library (eg: boost.a) and some *.o files to create a dynamic library (Eg: libdynamic.dylib) in MAC OS X. I am able to hide the symbols from the *.o files since I created those by -...
3 votes
0 answers
2k views

how to disable discovery/visibility of HC-05 bluetooth module

I am using hc-05 module interfaced with an arduino to connect with android device. What i am trying now is to disable hc-05 bluetooth module discovery/visibility to other device. In short i want to ...
0 votes
0 answers
69 views

Unity setactive() not working because of object name

So I have a sort of item system in my game and it opens a savefile to see what items the player has at the time, when it loads it enables and disables objects based on the savefile information. Which ...
6 votes
1 answer
670 views

Subclassing sun.* class in same package gives IllegalAccessError

Foreword: What am I going to show you is WRONG and I'm well aware of how bad I am for breaking encapsulation by doing such foolish thing. I'm not trying to solve any more general I/O problem. It's ...
0 votes
2 answers
3k views

If-else statement and visibility - android

I have five checkboxes in my app along with five progressbars, and have called visibility according to checkboxes to make progressbars visible/gone. so is there any alternative to if-else statements ...
2 votes
3 answers
498 views

JavaScript var visibility

Given this code: function MyClass() { var v = '1'; this.hi = function() { console.log('Value of V is ' + v); var v = '2'; console.log('Value of V is ' + v); ...

15 30 50 per page