All Questions
0
votes
0answers
3 views
Actionscript 3 - How To Check A Random Pixel Of A Sprite
I have a sprite that is drawn in random and complicated way. Pixels would be either transparent or not. And now I need to check if pixel new Point(10, -5) is transparent or not.
How can I do that ?
...
0
votes
0answers
4 views
Link form field to mysql query
I have been search the web for a solution but have not been successful to date.
What I am trying to do is to enter the zip code and have the city and state populate other fields. I have created the ...
0
votes
0answers
6 views
Call method from parent inside helper c#
I am trying to call a method from another class, but inside that method, call a method from the first class... I can't explain better, so here's what I want to do with code...
MyClass.cs
public ...
0
votes
0answers
3 views
Adding a nonce to a form that was manually created
Is there a way to add a nonce to a manually created form? For example, creating an SQLFORM in the controller and rendering it as {{=form}} in the views will automatically attach the nonce to the form.
...
0
votes
0answers
6 views
when use cygwin g++ to build a project , can't find the include head file even if I have indicated path with -I
I knew there a punch of this kind problem to bother you . But it's weird to me . Please be patient to let me finish my problem statement .
Background : Windows vista , cygwin latest version , opencv ...
0
votes
0answers
6 views
Filling JList with table
Does anyone have any good tutorial to fill a JList with table from sql like this query. The JList would get update every you create or delete a table.
SELECT name FROM sqlite_master WHERE type = ...
0
votes
0answers
10 views
Multible Instances Of JavaApplication
Is it possible to run more than one instance of a JavaApplication developed in Netbeans?
My project uses sockets and I need multible instances of my application to test it.
Before Netbeans I used ...
0
votes
0answers
2 views
No operation matching request path
I am building RESTful API with CXF. I have added two extra methods to delete my resource (messages) but when I send request I get "No operation matching request" in my logs:
No operation matching ...
0
votes
0answers
9 views
How to use website search bar function in code
While a user can type in a search term in an onsite search bar directly, how can I do the same thing in code, especially when there is no known api? Say I want to know whether Macy's carry "baby ...
0
votes
0answers
21 views
PHP - Show message if header location redirect fails
I need to redirect to an unknown address. If the address is not available I would like to show a message to the user. How to do that?
<?php
header("Location: http://www.example.com/");
exit;
...
0
votes
0answers
7 views
Using same session for different domains in chrome
I have 2 web applications and 1 web service application in asp.net (all of host in same server but all have different domain) (example : 213.74.99.50:9090 for 1 st app, 213.74.99.50:9091 for second ...
-1
votes
0answers
11 views
Count all rows that contain a specific value
I need to get a total number of a rows that contain a specific value using the expressions in the report builder.
Simple example: Count all rows that have 'Male' in the 'Gender' column.
How would I ...
-1
votes
0answers
9 views
It is possible to show list/dictionary generator progress in python?
I build very big dictionary (2^20 elements) in python using dictionary generator (i'm using IDLE for this). The process is very long because of every element needs hard computing. It is possible to ...
0
votes
0answers
2 views
Is the git submodule name used for anything other than display?
The .gitmodules file used to track submodules within a git repository normally has a name for each submodule, like this:
[submodule "my-submodule"]
path = foo/bar/my-submodule
url = ...
0
votes
0answers
24 views
C++ errors when compiling
I'm getting the following errors when trying to compile and i just can't understand why, my apologies if it's something simplistic and easy to solve but i'm pretty new to c++ and having abit of ...