Tagged Questions

Access is a generic tag and does not refer to Microsoft Access, the tag for which is ms-access. This tag has few followers and is unlikely to add much value to a tag list.

learn more… | top users | synonyms

6
votes
4answers
174 views

Is accessing c++ member class through “this->member” faster/slower than implicit call to “member”

After a some searching on our friend google, I could not get a clear view on the following point. I'm used to call class members with "this->". Even if not needed, I find it more explicit as it helps ...
5
votes
5answers
115 views

Is it fastest to access a byte than a bit? Why?

The question is very straight: is it fastest to access a byte than a bit? If I store 8 booleans in a byte will it be slower when I have to compare them than if I used 8 bytes? Why?
5
votes
3answers
247 views

how to map callback Function with Java native access (JNA)

How can i set up windows hook with WH_FOREGROUNDIDLE and the following call back Functions DWORD CALLBACK ForegroundIdleProc( __in int code, DWORD wParam, LONG lParam ); I am trying to detect when ...
5
votes
5answers
77 views

Is there a way to prevent users from doing bulk entries in a Postgresql Database

I have 4 new data entry users who are using a particular GUI to create/update/delete entries in our main database. The "GUI" client allows them to see database records on a map and make modifications ...
4
votes
1answer
84 views

Where can I read more about D's class access modifiers?

I can't seem to find a good reference for the D programming language class access modifiers. I know that public and private are pretty much guaranteed but i'm guessing there are more, i just can't ...
4
votes
3answers
189 views

Problem using System.Diagnostics.Process.GetProcess(string);

I'm using Microsoft visual studio to make a simple remote task manager for experience purposes. I want to use Process.GetProcesses(string); but there is an access denied exception that won't allow me ...
4
votes
1answer
42 views

How to get information about the authorization of creating a new file or modifying a cerntain file in a specific directory

How to get information about the authorization of creating a new file or modifying a cerntain file in a specific directory? In my program, the users may choose the directory to save their files or to ...
4
votes
1answer
331 views

Is it possible to access a string-array item in Android?

snip-code from values/string.xml: <array name="categories"> <item name="today">Today</item> <item name="life">Life</item> <item ...
3
votes
2answers
42 views

How to get value from Object, with default value

I constantly find myself passing config values to functions accessing them like this var arg1 = 'test1'; if(isUndefined(config.args.arg1)){ arg1 = config.args.arg1; } var arg2 = 'param2'; ...
3
votes
1answer
43 views

Converting Quick BASIC to VB.Net - Random Access Files

I'm trying to convert an old Quick BASIC program to VB.Net. There doesn't appear to be any direct replacement for the old file statements. Building a database seems like overkill for my simple needs. ...
3
votes
5answers
85 views

Access an array of class in a function

I made an Array of Class st[5]. And tried to display st[5]'s data by using a function. But it doesn't work. Only the 1st class (st[0]) is displayed, and the 'debug error Message'. I don't know what ...
3
votes
1answer
101 views

googlebot last access script php

i have following function to have last acces date of googlebot //get googlebot last access function googlebot_lastaccess($domain_name) { $request = ...
3
votes
6answers
90 views

java protected modifier

I have just got weird error which involves protected modifier. I have following code: package p1; public class C1 { protected void doIt() {} } package p2; public class C2 extends p1.C1 { ...
3
votes
2answers
66 views

What are the design reasons to forbid accessing static elements of the class via object

I cannot emphasis this more -- design reasons. In C++ you could get static element using class (type) reference or object (instance) reference. In C# only the type reference. The more I write in C# ...
3
votes
4answers
152 views

Why should I prevent direct access to PHP files that do not echo anything?

For an example if I have a mail script or a script that writes to a database - scripts that do not echo anything important (other than a thank you, or an error message), but do a lot of important ...
3
votes
1answer
52 views

Make Django admin documentation accessible

Hey people i just want to know that is there any way i can make admin documentation (Django) for my project accessible to other users ,but at the same time not giving them access to admin database .
2
votes
1answer
16 views

Restrict Access to System Applications from Enterprise Solution

Here is my scenario, I am looking at solutions like Good for Government, which allows a government agency to restrict access to system applications in iOS and Android via a web server/enterprise ...
2
votes
1answer
36 views

Understanding synchronization needs for RecordStore in J2ME

Reading up on the RecordStore documentation, one can read the following: Record store implementations ensure that all individual record store operations are atomic, synchronous, and serialized, so ...
2
votes
1answer
61 views

Scala object private scope with inner classes and methods

I have a little confusion about accessing private inner classes of an object with the same object's methods. Here is the code of my excercise from Programming in Scala (pages 245-246): import ...
2
votes
2answers
47 views

Using mysql code in a javascript?

Hi guys I have somewhat of a big question. I'm stumped I've looked all over the internet and found no real way to access mysql within javascript, therefore I can't do what I need to. Basically my ...
2
votes
1answer
77 views

Puzzle — exposing a public sub-member of private member with custom type

I would like to do something like this (example is simplified, but contains all the crucial pieces): class Master { type DataType = Int var counter : DataType = 0 } class Slave(private val ...
2
votes
1answer
39 views

Accessing another folder content with php

I have my root folder set to /var/www/html, but I have php program that suppose to access/read Reminder folder (and its content) which is located in /home/billing/work/output/Reminder, scan the folder ...
2
votes
1answer
60 views

How to access rear and front speaker of Android phones?

I want to access rear and front speakers of android phones, programmatically.
2
votes
1answer
75 views

Opencv Image Wrapper cpp

I read on http://www.cs.iit.edu/~agam/cs512/lect-notes/opencv-intro/opencv-intro.html that a possible way to access the image data with c++ is: template<class T> class Image { private: ...
2
votes
1answer
80 views

which kind of database to use with android app?

I am developing an android program for my university. I am confused about which database to use. What exactly I want is that when the user is connected to the internet the program will check for any ...
2
votes
1answer
82 views

how do I access the name of a given variable in python?

I am Programming in python and need to access the name I have given to an object so as to be able to pass this as a string (concatenated with another string). The reason I need to do this is that the ...
2
votes
2answers
69 views

Login form is permitting access with blank user name and password

I'm trying to implement a PHP login script which works with 3 PHP files. The scripts work fine when using correct user names and passwords, and the script even blocks access when the wrong information ...
2
votes
2answers
72 views

WiX: Installing application in ProgramFilesFolder throws AccessDenied Exception. Why?

I have a C# application and a WiX project to install this application in the ProgramFilesFolder. My application has a viewer element that uses a dll file. If i start the application with normal user ...
2
votes
2answers
256 views

TFS 2010 Build - batch file 'access denied'

Running TFS 2010 I am trying to do a proof of concept, having batch files run as part of the build process. I have an 'invokeProcess' in my build seqeunce which runs a batch file. When I run the ...
2
votes
2answers
61 views

accessing static fields from different application

I have a bad feeling about this question but... Given this class class A { public static final String field = "I_m_a_field"; } in the package com.uselessoftware.A and compiled as A.apk. Is ...
2
votes
3answers
93 views

Accessing other class' function in Python

I'm very new to Python, so sorry about what will surely be an obvious question. I want the class Computer_paddle to be able to call Ball's function, y_position(), and get the return value. But it ...
2
votes
1answer
70 views

Mercurial Directory Access Rules

I have a mercurial repository with the following directory structure: / /system /applications /applications/client1 /applications/client2 /applications/client3 I am serving the repo over an apache ...
2
votes
1answer
420 views

Whats does the Perl error “Can't locate Net/SSH/Perl.pm” mean?

I am trying to SSH using a Perl script but I get the following error. Can't locate Net/SSH/Perl.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 ...
2
votes
6answers
122 views

Two word count within many strings

I have a list of phrases and I want to know which "two words" occurred the most often in all of my phrases. I tried playing with regex and other codes and I just cannot find the right way to do this ...
2
votes
2answers
569 views

iOS WiFi network switching

My company is developing an iPhone accessory that requires a relatively high connectivity rate to the phone. Due to MFi limitations (USB 2 communications in HOST mode fair only around 100KBps), we're ...
2
votes
5answers
196 views

java access modifiers and overriding methods

Why does Java specify that the access specifier for an overriding method can allow more, but not less, access than the overridden method? For example, a protected instance method in the superclass can ...
2
votes
2answers
159 views

How to access iphone contact details into my sample application?

I want to know how to access iphone contact details into my application ?
2
votes
2answers
187 views

Rails 3 company account with many users, restrict access to data

I'm wondering about the best way to structure authentication in my app. I want to have many company accounts, possibly using subdomains Account has_many users and users can only access records that ...
2
votes
1answer
139 views

ACL extension on main mercurial repository

I have the following setup on my servers hgrc file: [extensions] acl = [acl] sources = serve, push [acl.allow] I was expecting this would block my clients from pushing anything to the repository, ...
1
vote
0answers
17 views

REVOKE_ACCESS : how to remove 'revoke' an inherited ACE?

I have the code below working for various ACE changes and adds and revoking -- it just does NOT work when I try and remove an ACE that is in the ACL (clearly) there, but this ACE is inherited. The ...
1
vote
1answer
25 views

How can an access token be shared between server names? (www vs non www)

I am currently developing an app via website and the token that Facebook returns back will only be in session for the exact url. In other words, if a user hits site.com and logs in, the token only ...
1
vote
1answer
31 views

How to proper use user_access($string, $account)

I would like to limit the use of some url's. Let's say node/add and node/7 (just random examples). I'm thinking the best way to do this is to use the user_access function. But as we are used to it, ...
1
vote
0answers
60 views

SHOUTcast XML get with php

I have shoutcast administrator and i need to read xml from that it looks like this http://SHOUTCAST-IP:PORT/admin.cgi And i need to login and get the XML Data from ...
1
vote
1answer
24 views

How to properly catch the access token?

I can't seem to catch the access token as invalid even when i logged out of facebook. if ($user) { try { // Proceed knowing you have a logged in user who's authenticated. ...
1
vote
1answer
31 views

Accessing the /cache filesystem

This time I will be quick and painless: how can i write a file in the /cache directory? I continue to get a FileNotFoudException (Permission deined). Someone told me about the ...
1
vote
0answers
26 views

Is it possible to check which domains acces a page on my website [migrated]

I have a page and I would like to allow access to this page only from domains that I allow. What would be the best way of doing this?
1
vote
1answer
69 views

Cannot access session data

In my project, I'm trying to access the session data from 2 files, located in 2 different directories: /site/page.extension.php <-- initializes the session and writes data to it ...
1
vote
2answers
101 views

Android: cannot access sdcard files from device

I'm working on an android app that writes and read .PNG files from sdcard. I've already tried it on a device (htc) and it was working fine. Then I had to modify some code to correct some errors (Note ...
1
vote
1answer
43 views

Active Directory Access

I need to access information from active directory. I am using code DirectoryEntry entry = new DirectoryEntry("LDAP://domain", "AD_id", "password"); DirectorySearcher search = new ...
1
vote
3answers
49 views

c++ macro based on context

I'm injecting code into C++ classes through macros. Is it there a way to do this depending on the access modifiers' context? Something like #if (we_are_in_public_context) INJECT_PUBLIC_CODE(params) ...

1 2 3 4 5 7