In VS2005, I am using a DLL which accesses a SQL Server. The DLL returns a SQLException
Invalid object name 'tableXYZ'
but tableXYZ is a table in the database.
Should it be looking for dbo.tableXYZ instead? Is this a permissions issue with the login being used?
When I'm trying to compile OpenCV on Mac OS X Snow Leopard I recieve an error
highgui/cvcap_qt.cpp:76: error: ‘Movie’ does not name a type
There is a structure
/// Movie state structure for QuickTime movies
typedef struct CvCapture_QT_Movie
{
Movie myMovie; // movie handle
GWorldPtr myGWorld; // we render into an offscreen GWorld
But I don't know this type is described. I think in Quicktime but Quicktime is included
// Mac OS includes
include
include
include
So I cannot build it.
I'm using Kohana validation library and I want to set up my own user friendly error messages. The problem is that I generate the form dynamically, so field names are not know during development.
Can a set up error messages for the different validation rules (required, digit, ...) regardless the field name? How?
Note: I'm using Kohana v2.3.4
Hi,
I am using Visual Studio for a project and Drools.NET and Proxem Antelope both use a DLL IKVM.Runtime but they're both different versions. Thus I do not know what I'm supposed to do to accommodate both of these.
Any help will be appreciated.
Thanks!
Error:
Exception has been thrown by the target of an invocation.
The problem is that they both have the same name
I'm using a TextField where the user types a phone number. When the TextField changes, it should check if this number is already in the phonebook and display the name.
So far, my only way is to parse all names and number in a Dict and read it from there.
Is there a simpler, more efficient and sophisticated way to do that?
How to set the node text.Here is the code am using
public TreeCreation(final ArrayList houseList){
Apartment= new DefaultMutableTreeNode("Apartment");
for(int i=0;i
by passing the userObject the name of the object is being displayed on the node ,how do i change the code to display h.HouseName when am using userObjects
node.getUserObject(hs.HouseName);
What's the story behind the ::'s sometimes token name
T_PAAMAYIM_NEKUDOTAYIM
I'm mainly interested in knowing if
This is an abbreviation for something else
This is a phrase in a language other than English, and if so what's the language and what's a rough translation
This is some obscure-to-me programming term
Drunk Developers
Thanks!
I have a SOAP web service which I call from two clients using axis2. Can the web service know from which of these two clients the call originated from? If so, how do I know that during runtime? Is there any API provided to lookup the name of the invoker of a particular web service by that web service. Thanks.
I am using PHP and I need to use a name say "Pranav dave" in url which should redirect me to "myprofile.php" what should i do?.. also the url should display me "Pranav dave".. and what should be the htaccess rule to redirect any html file to php file?
I'm using a TextField where the user types a phone number. When the TextField changes, it should check if this number is already in the phonebook and display the name.
So far, my only way is to parse all names and number in a Dict and read it from there.
Is there a simpler, more efficient and sophisticated way to do that?
Hi all,
I was working on a application with Zend Framework and PDO_MYSQL Adapter.
But my client server doesnt support PDO_MYSQL
I changed the adapter to Mysqli and im getting
Invalid bind-variable name
error.
How to resolve it thanks in advance.
Regards
Nizam
For example:
Sub Test()
Dim car as new MyCar
car.chassis.wheel.radius = 15
Console.WriteLine(car.chassis.wheel.radius)
End Sub
So question is. Is it possible to access the property using its string name like
Something("car.chassis.wheel.radius") = 15?
Actually, yesterday I attended an intrview..in that they asked 1 question about strong name..I can't able to guess what it is?.pls explain about this..thanks.
Hi guys what is the difference between the id and name attributes? they both seem to serve the same purpose of providing an identifier.
I would like to know (specifically with regards to ASP.net web forms) whether or not using both is necessary or encouraged for any reasons.
Thanks guys!
I would like to take a database of say, 1000 users and select 20 random ones (ORDER BY rand(),LIMIT 20) then order the resulting set by the names. I came up with the following query which is not working like I hoped.
SELECT * FROM users WHERE 1 ORDER BY rand(), name ASC LIMIT 20
Why do we use reverse domain name like com.something. or org.something. structure for java packages?
I understand this brings in some sort of uniqueness, but why do we need this uniqueness?
I'm receiving "culture name 'uploads' is not supported" when my asp.net app start. Where I have to view/debug to toggle the error? A full-text for "uploads" returns o entries in my project
Is there a way to get a variable name as a string in Javascript? (like NSStringFromSelector in Cocoa)
I would like to do like this:
var myFirstName = 'John';
alert(variablesName(myFirstName) + ":" + myFirstName);
--> myFirstName:John
-- added
I'm trying to connect a browser and another program using JavaScript. I would like to send instance names from a browser to another program for callback method.
In system network preference there are some location names.How to get the current or active network location name and list of all network locations? I guess SystemConfiguration.framework supports this but i didn't get exactly which API to use.Thanks in advance for your answer. RegardsDevara Gudda
Hi,
I am sending tweets to Twitter via Zend_Service_Twitter.
The tweets appear with a note "via API". I want to set the API Source with a different name, is there already a functionality within the Zend Framework to change it?
Or do I need to subclass to get this functionality?
Thanks!
I am attempting to sum over a detail grouping on a specific field in Microsoft Access, and assign that sum to a field in the general grouping. When I try to run the report, I get an "Invalid Column Name" error with the detail field getting the error. Has anyone previously encountered this? If so, any ideas what might be causing it or how to solve it?
In my website I created a class e.g. Class1.cs in App_Code folder when I am trying to load default page which is using this Class file I am getting the following error
CS0103: The name 'Class1' does not exist in the current context for the code
String something = Class1.item1(text1.Text, text2.Text);
and Class1.cs consists of
protected static string item1(string a, string b)
{
//some action here
return null;
}
Everything works fine in my VS2010 but when I host the website in my server I am getting this issue.