Tagged Questions
The hiding tag has no wiki summary.
9
votes
4answers
1k views
C# Hiding, overriding and calling function from base class
I'm learning C# and I encountered the following problem. I have two classes: base and derived:
class MyBase
{
public void MyMethod()
{
Console.WriteLine("MyBase::MyMethod()");
}
}
...
7
votes
6answers
103 views
member function hiding free function
void foo(int)
{
}
class X
{
void foo()
{
}
void bar()
{
foo(42);
// error: no matching function for call to 'X::foo(int)'
// note: candidate is:
...
7
votes
3answers
2k views
C++ inheritance and function overriding
In C++, will a member function of a base class be overridden by its derived class function of the same name, even if its prototype (parameters' count, type and constness) is different? I guess this a ...
4
votes
5answers
134 views
Can a class be private to a translation unit?
Consider the following code:
/*
* myclass.h
*/
class myclass_impl
{
// ...
}
boost::shared_ptr<myclass_impl> myclass;
Can I somehow make myclass_impl (or, at least, the direct use of ...
4
votes
4answers
343 views
What is the purpose of hiding (using the “new” modifier) an interface method declaration?
it's possible to mark a method declaration in an interface as "new" but does it have any "technical" sense or is it just a way to explicitly state that the declaration cannot override a previous one ?
...
4
votes
5answers
518 views
jQuery How to Hide DIVs, they are Showing for a Split Second on page Load
I have made a very quick jquery slideshow, and i'm using this to hide the DIV's which shouldn't be shown until it's their turn obviously:
$(document).ready(function() {
//Hide All Div's Apart ...
3
votes
4answers
181 views
Compiling script files Lua or Python
I will seperate my bussiness code into a script language. it would be Lua or Python.
My question is my bussiness code written in script file is viewable by others.
Because of script file will not ...
3
votes
1answer
561 views
override non-virtual functions in C++ 2011
The very new syntax of override allows to let the compiler to report an error, if one does not really override a virtual function N3206.
class Base {
virtual void vfunc();
void afunc();
};
...
3
votes
8answers
4k views
What is Shadowing?
In C# what does the term shadowing mean? I have read this link but didn't fully understand it.
2
votes
2answers
97 views
Java generics type parameter hiding
I'm defining a class:
class Foo<I extends Bar & Comparable<I>> {
}
the compiler is complaining about I being hidden by I. I guess the second time I appears in the definition is ...
2
votes
1answer
129 views
Hiding permission intent in Android?
as we know, android os have some restrictions, to operate device hardwares programmetically, like it shows intent to user which requires YES for return true to the specific intent, i-e:
Intent ...
2
votes
2answers
276 views
Effective C++: Item 52 and how to avoid hiding all normal operator new & delete versions
At the end of Item 52 (Customising new and delete) in Myer's Effective C++ he discusses how to avoid hiding normal new and delete versions when implementing custom version as follows:
If you ...
1
vote
1answer
33 views
How can I hide all errors from an Eclipse project?
I have taken a huge project from one of my friends and I just want to view the files just to understand some coding architectures they have implemented. On my system I don't have those jars and ...
1
vote
2answers
56 views
Hiding non-member functions in header files
I'm wondering if I can define some functions in a header file and then use them in the same header file, while hiding them from anything else?
For example, can I first define some general helper ...
1
vote
1answer
79 views
Hiding a folder in c# [closed]
Hi i need your help to finish my first c# project i need to know which is the most secure and easiest way to hide a folder to make it secure to put my personal stuff in it.
Thank you
1
vote
4answers
177 views
Hiding a <td> in a <tr> with CSS
I'm new to designing in CSS. I have a requirement in which I have to hide a td element in a tr which has 2 tds
here is the HTML code
<div class="ms-globalnavicon">
<table ...
1
vote
2answers
95 views
Access modifiers and hiding Java fields
This is a follow-up to the question: "java access modifiers and overriding". The former generally deals with Java methods however. Why the flexibility with Java fields? We can narrow or widen the ...
1
vote
1answer
128 views
Hiding Connection String in IIS manager 5.1
I am using encryption mechanism provided by .net to encrypt/decrypt the connection string in web.config, however i am still able to see my connection string in IIS Manager 5.1(win-Xp)
In IIS manager, ...
1
vote
1answer
80 views
Keyboard is not hiding in pushViewController
I am facing very strange problem. I have 4 textboxes in grouptableview. 3 textboxes shows keyboard for typing while taping on the other textbox i have navigate to other view. I am using ...
1
vote
3answers
182 views
Hiding a page element with PHP
Alright, so I've got this:
<style type="text/css">
<!--
#frmFeedback {
display: <?php echo($myFormDisp); ?>;
}
-->
</style>
and this:
//hide form
$myFormDisp = ...
1
vote
1answer
86 views
Hiding all the 'Skipped Build' messages in VS2005 / VS2008
I'm building a Visual C++ solution that includes a large number of projects, most of which are skipped for this build. Every time I hit 'Build' I get a dozen messages like this in the Build output:
...
1
vote
2answers
2k views
Hide a UIBarButtonItem when in edit mode
I have a UINavigationController with a UITableViewController which has and two UIBarButtonItems:
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.leftBarButtonItem = ...
1
vote
4answers
1k views
Overload and hide methods in Java
i have an abstract class BaseClass with a public insert() method:
public abstract class BaseClass {
public void insert(Object object) {
// Do something
}
}
which is extended by many other ...
1
vote
1answer
67 views
why does my jQuery drop-down hide when I hover it?
I have this drop-down menu made with jQuery (EDITED with first answer and still not working :( )
var currentDrop = null;
var dropTimer;
$(document).ready(function() {
$("ul#menu > ...
1
vote
2answers
111 views
Hiding buttons/images shortcut?
Is there a shortcut for this code?
-(IBAction)reset{
button1.hidden=NO;
button2.hidden=NO;
button3.hidden=NO;
button4.hidden=NO;
button5.hidden=NO;
button6.hidden=NO;
...
1
vote
4answers
108 views
hiding file extention it self
i looking for your help please
i use simple php code like:
$file = $_SERVER["SCRIPT_NAME"];
//echo $file;
$break = Explode('/', $file);
$pfile = $break[count($break) - 1];
echo $pfile;
than output ...
1
vote
2answers
3k views
Problem with jquery blur() event on Div element
I have problem hiding certain popup wich are based on divs. when i click out side those divs they dont hid. Here is the sample code what i m doing..
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
1
vote
7answers
1k views
C# - Hiding all methods of the UserControl class from a derived one
I have a custom user control. Normally it inherites the UserControl class. But by this way it inherites all the public methods and properties of UserControl. But I want to hide all these and implement ...
1
vote
3answers
151 views
hiding a link in asp.net
in the following master.cs code.....
public partial class Default : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
BasePage page = (BasePage)Page;
...
0
votes
2answers
42 views
Encrypt Or Hide QueryString at Asp.net website using .net 3.5
I have an existing asp.net web site built with master pages and what I need to hide or encrypt all pass query strings values in a common place without changing a lot of code.
Can any one help me with ...
0
votes
2answers
48 views
Hiding Query String Parameters
I have a GET action for creating records. Because the page is somewhat dynamic, I don't use a model to hold the data. I go off to do some OAuth, only to return to the create screen later on. In order ...
0
votes
0answers
51 views
activity indicator hiding the popover
My iPad app had a simple view with a webview showing pdfs and a popover.
I inserted a uiactivityindicatorview to show when a pdf finish the loading. It is working, but when the load ends the popover ...
0
votes
1answer
84 views
C# Abstract Method Inheritance and Hiding Methods Unintentionally
I've got a question about accidentally hiding abstract methods.
I'm creating a basic Entity class as an interface from which to create all other entities in the game I'm working on.
From this Entity ...
0
votes
2answers
70 views
how to Hide Lotus Outlines based on User roles
I am working on lotus applications, I want to hide the views based on certain roles. e.g Only Department manager can view the Lotus views not all users..
Another option that may be applied is to hide ...
0
votes
1answer
63 views
Hiding Saturday in FullCalendar v1.4.11
How can i hide Saturday from showing himself in the fullcalender.js when viewing AgendaWeekView.
I'm using FullCalendar v1.4.11 and i would like to show the end user only the dates between Sunday ...
0
votes
2answers
194 views
How to hide the following Un-used rows in Excel sheet using Java Apache POI?
I am populating a template Excel sheet, with the data from the database :
for (Map<String, Object> resultRow : dbResults) {
if ((currentRow = sheet.getRow(currentDataRow)) == null) {
...
0
votes
1answer
112 views
Hiding and Unhiding of tabbar
I have a tabbar controller. I want to hide the tab bar in a view and want to unhide the same tabbar in the next view.The hidding code is working for the first view but in the second view where i am ...
0
votes
1answer
100 views
question about hiding/shadowing member-variables in Java
I want to understand how hiding works in Java.
So lets assume you have following code
public class A{
protected SomeClass member;
public A(SomeClass member){
this.member = member;
...
0
votes
2answers
452 views
How to Hide the PhoneGap Source Code from the Android apk?
I'm developing one application on Android using PhoneGap.
I will be giving this applications to some of my friends. But I dont
want them to see the Source Code (html, css, and .js files).
Is it any ...
0
votes
4answers
363 views
Show/Hide Div Based on URL using PHP
I want to show a DIV ONLY when on /../mahjong.php. So even if I go to /../mahjong.php?layout it should hide the div (since it's not the same url)
I have tried the following:
// We're NOT on the home ...
0
votes
3answers
203 views
Hiding XML code in view source code
I have to send an XML request to recover data from a remote server and parse it using PHP. That much, I've managed to do... sort of. The trouble is, the XML I get back from the remote server looks ...
0
votes
2answers
45 views
hiding something in response to event (qt)
I cant figure it out how to hide an element in response to index change in combobox
im trying to write function which take care of index change but i dont know how to get (from that function) acces ...
0
votes
2answers
283 views
C# Hide Text in Image
I'm looking for a method of hiding some text in an image. Not like just putting text on the image in a hard to see color, but actually putting it into the code of the file.
0
votes
2answers
211 views
how to hide columns in html table?
i am created one table in .aspx i want to hide one column based on my requirement but there is no attribute like visible in html table building. so how can i solve my problem?
0
votes
1answer
161 views
Excel 2007. Stop the printing of filtered (hidden) rows
I have a user who has built a system in Excel (it's an EIE organisation) and they are filtering rows by a user column and then wish to send that user only their rows. They wish to print this out, but ...
0
votes
1answer
56 views
C#: Tests.* namespace hides another namespace
I have 2 namespaces:
Project.Core;
Tests.Project.Core;
In Project.Core there is a Class named "Text". In Tests.Project.Core.TextTests (where I place tests for Text) I also use NUnit which also has a ...
0
votes
1answer
643 views
objective-c hide round rect buttons
I have three buttons centered on my view called btn_easy, btn_medium, btn_hard. I want to hide all three of these buttons when I click one of them: My .h file has the outlets and method defined as ...
0
votes
2answers
91 views
Abstraction and information hiding
Abstraction means hiding 'implementation details'..... So the goal of abstraction is to achieve information hiding?? And what is hidden in Information hiding if not implementation details??
And how ...
0
votes
4answers
109 views
Syntax Error: identifier 'Edge'?
At the consturctor Node = new Node[numberOfNodes]; and Edge = new Edge[numberOfEdges]; gives identifier error? what's the wrong with it ?
typedef struct node
{
int id;
int x;
int y;
} Node;
...
0
votes
2answers
132 views
Hiding inner classes - What am I missing?
Really hope someone can point me in the right direction as I have no hair left anymore...
I am developing a simple SDK using VB.NET in VS 2010 and I have a class (OuterClass) that is inheriting ...