0
votes
1answer
8 views
Making Controls public/Global in Netbeans with Java.
So I have multiple forms for my current project and I have made classes that interact and do some utility work behind these forms.
However I am unable to access controls on other …
0
votes
1answer
27 views
When should a DTD be made public
When creating a custom external DTD you have the choice of making it private or public. When should a DTD be made public?
In this case I'm creating a DTD for an xml file which wil …
0
votes
2answers
21 views
public synonym creation
How can I create a public synonym in oracle 7.3.4 for a common table located in different users.
3
votes
4answers
142 views
public static final variable in an imported java class
hi all,
I happen to come across a Java code at my work place. Here's the scenario: There are 2 classes - ClassA and ClassB.
ClassA has nothing except 4 public static final string …
0
votes
2answers
78 views
What is the difference between signing Certificate and Encryption Certificate?
What is the difference between between signing certificate and encryption certificate?
I see that signing certificate cannot be used for encrypting the data only encryption certif …
0
votes
3answers
59 views
VBA Public Array : how to ?
Hi folks !
So today's problem is getting me mad because that should be easy and i can not find the answer :
How to declare a public array in VBA ? I'm using an array with the lett …
1
vote
1answer
80 views
RSA pubkey file type detection
Hi all!
I got a RSA pubkey.dat (almost obvious what it is) that has the following structure on contents:
ASN1 Integer of around 1024 bits (Modulus)
ASN1 Integer (Exponent)
Blob …
2
votes
4answers
96 views
Python: Public methods calling their ‘brother’ private methods.
Hi,
I have been writing Python code for only a couple of weeks, so I'm still figuring out the lay of the land. But let's say I have a method that MAY be called on by a 'user' on o …
1
vote
2answers
164 views
How can I set a custom response header for pylons static (public) files?
How do I add a custom header to files pylons is serving from public?
0
votes
2answers
50 views
Secure captive portal?
We would like to run a wireless access point for public use. However, in case of misbehavior, we would like some personal information to be able to pass on to law enforcement.
The …
1
vote
4answers
43 views
Send the result of multiple commands to one text file?
This is what I have so far - my dropbox public URL creation script for a directory of public URLs (getdropbox.com - gpl I think). My LIST file was created using ls in the following …
0
votes
2answers
110 views
How to easy find unused public methods/properties
I have a .Net(C#) solution. The solution contains bunch of projects. The projects were implemented not by me. It is not a framework, it means that I need to have amount of public m …
0
votes
0answers
9 views
How can I use externally generated keys to encrypt and decrypt the data in iPhone?
I am working on an application, in which I need to encrypt and decrypt the data, with the keys generated by server. I viewed the sample code of Crypto Exercise. In that keys are au …
4
votes
3answers
97 views
Use of “Public” in a derived class declaration?
Given this base class:
class Employee
{
char* name;
int age;
public:
Employee(char* name);
void print();
};
With regards to the "public", what's the diffe …
1
vote
5answers
180 views
Header class file to be used by others
Hi,
I would like to know if there is a way to put only protected and public stuff on the header file .h, and all private stuff in the compile unit .cpp
I need this because the lib …
