The use tag has no wiki summary.
0
votes
0answers
14 views
How Can I Call the “use” button of a UIImagePicker?
I can call the image picker to take photo with [picker takePicture];
But after that, I want to use the image that I took automatically, with code, not with: 1didFinishPickingMediaWithInfo:1
but a ...
-1
votes
0answers
10 views
generate sequence diagram from use case [closed]
I have created a Use Case with a scenario and several alternates.
The activity diagram is created fine, but I get nothing when I try to create a sequence diagram. No error, just a black diagram.
Do ...
1
vote
1answer
18 views
How do I change current mysql database dynamically in a procedure?
For our system we are using multiple databases with the same structure. For example when we have 1000 customers, there will be 1000 databases. We've chosen to give each customers his own database, so ...
0
votes
0answers
6 views
Doctrine2 getRepository and the use operator
I am trying to clean up a little bit of code and am having some trouble. I have a few entities that I am using over and over again in a routing file. For example:
$categories = ...
-1
votes
0answers
10 views
how to use embed code in fpdf
here is my code
$codeembed = (views_embed_view('only_chart', $page = 'default');
$pdf->Cell(275,20,$codeembed,1,0,'L',0);
i using normal php string others strings showing ...
-3
votes
1answer
29 views
how to use argument for add file to list in C# win app [closed]
I have a question. How can I add some files to a ListView when my software is running?
I don't want to run another process in my software to do that.
Edit:
I try to use argument in the main field in ...
0
votes
0answers
13 views
Using a Google API V3 key on multiple sites
I am trying (again, after a long pause, lost the will to live last time as it was sooooo fiddly with V2) to try and add a bespoke Google map on a site.
It will show a map centred on the client's ...
2
votes
1answer
51 views
Perl: how to generate a list of 'use'd modules in a script? [duplicate]
I have a few Perl scripts which use quite an extensive amount of CPAN modules. Furthermore, these scripts use some custom perl modules which in turn have even more CPAN dependencies.
Some of the ...
0
votes
1answer
45 views
TypeError: Object #<Server> has no method 'use'
I have sth like this:
var express = require('express'),
app = module.exports = express.createServer(),
....;
app.use(express.bodyParser());
and it says that
"Object #<Server> has no method ...
0
votes
2answers
77 views
How to `use` local `defs` in SVG
I have multiple SVG pictures embedded into single HTML page.
Every SVG has own defs section that I am referencing to in my use elements.
It looks like I can't define element with the same id inside ...
0
votes
1answer
85 views
Why use GLSL along with OpenGL?
While trying to get the gist of OpenGL, I eventually ran into GLSL. I have used OpenGL before for miminal things, like triangles and colors (since I haven't learnt much yet), but when I found out ...
2
votes
4answers
55 views
JSLint Strict Violation. Object Oriented Javascript frustrations
I'm trying to learn to do object oriented programming in JavaScript and getting JSLint strict violations. I understand that I'm using this in a non-global context (or something to that effect...), but ...
0
votes
2answers
49 views
Make a Use Case into an Activity Diagram
How can I make an activity diagram from this use case I made?
http://i.imgur.com/c5pA1VW.png
1
vote
2answers
69 views
Rename localy a Fortran derived type loaded from a module
I'd like to improve the readability of my fortran codes by using OOP.
I end up with quite complex derived types, for example : a%b%c%d%e, defined in module mymod.
Now, in a subroutine I do
...
2
votes
2answers
131 views
How to automatic load files needed by a namespace? (new title)
I have two files as described below:
Path: index.php
<?php
// Composer autload
require_once 'vendor/autoload.php';
//The commented code below works:
//$loader = new Twig_Loader_String();
//$twig ...
0
votes
1answer
56 views
Use (include/require) the same file twice
I have a perl script (MyTest.pl) that includes (use) two modules (MyA.pm and MyB.pm).
The problem I have is that module A also have to include Module B, but this doesn't seem to work as is already ...
0
votes
0answers
22 views
Change attributes from defs elements for different use elements
I have a SVG with 2 circles. In fact, they use just a single "def" called s1. How can I change attributes from just one circle (use). For example I want to set a different class to the element s1 when ...
-2
votes
7answers
206 views
how do use php variable in html? [closed]
var
$pathimage1="mydir/images/large/";
$pathimage2="mydir/images/thumb/";
$imagename="landscape.jpg";
$K="item1";
$row=180;
$colon=200;
how do use this php variable in html code?
<td ...
0
votes
1answer
45 views
PHP: Accessing Enclosed Scopes from Global Functions
I'm scratching my head at some PHP code. I can't tell if it logically works yet, as I'm quite new to PHP and it won't execute yet due to a syntax error: syntax error, unexpected 'use' (T_USE), ...
0
votes
1answer
33 views
Namespace, use reach file one folder up
Im trying to reach a class file where I have defined namespace in the top with the following:
File: config.php
namespace Config;
class Config
{
// Stuffs
}
The file structure is like this
...
0
votes
2answers
138 views
How can I use a filename with special characters in a Content-Disposition header?
I have a problem with some php code:
$link = $_GET['url'];
$name = $_GET['name'];
$str = '[wanted-web.ro]';
header("Content-Disposition: attachment; filename=$str $name");
header("Content-type: ...
1
vote
5answers
229 views
Perl use/require abolute path?
If I have a .pm file, is there a way I can use it, without placing it on my @INC path? I think that would be clearer in my particular use case - clearer than using relative paths or adding this ...
0
votes
0answers
33 views
I've created my own library but i'm getting “java.lang.ClassNotFoundException” (JAVA)
Well i've created really basic library with some methods to test the process with eclipse, i've exported that project into a jar, and imported into the project in which i want to use those methods ...
0
votes
2answers
295 views
How to make a jQuery plugin (jquery.cookie, jquery.validate.unobtrusive) loadable with requirejs and use.js
I been trying to extend template application from http://net.tutsplus.com/tutorials/javascript-ajax/building-a-scalable-app-with-backbone-js/. With following implementation I am facing “Uncaught ...
0
votes
0answers
64 views
What tools can I use for writing effective use cases? [closed]
People usually write use cases in word doc. I find browsing through such a lengthy document a bit difficult. What all tools do you people use for writing effective use cases?
1
vote
3answers
386 views
Get text from web page to string
Okay, so I'm new to android and I want to get the whole text from web page to string. I found a lot of questions like this but as I said I'm new to android and I don't know how to use them in my app. ...
1
vote
1answer
389 views
php namespace Class not found
Version_DefaultComponentForm.php
namespace ComponentManagement\Form;
class Version_DefaultComponentForm extends VersionForm {
public function __construct($name = null) {
...
1
vote
2answers
47 views
How to find user group and use of caching in django?
I am new to django/python and working my way through my webapp. I need assistance in solving one of my problem.
In my app, I am planning to assign each user (from auth_user) to one of the group ( ...
-1
votes
3answers
91 views
Equivalent to: import *
I am creating a Perl equivalent to my Python project.
Description:
I have a base module "base.py" that is used by all my scripts via "from base import *"
The base module has common ...
0
votes
2answers
83 views
How to reach cloned svg elements with javascript
I used <use xlink:href="path/to/file.svg"> element in my main svg file in order to clone repeatable block of svg few times.
index.svg:
<g id="menu_items" ...
5
votes
0answers
138 views
Does element order matter for inline SVG?
In Google Chrome 24, if an element referenced by a <use> element is defined later in the document it isn't rendered. I didn't notice anything related to element order in the documentation for ...
2
votes
1answer
90 views
How do I begin using an Eclipse plug-in after downloading it from the Eclipse marketplace?
In this case, the plug-in is Zest. I have downloaded Eclipse for java developers(Juno). I understand it has something to do with manifest.mf dependencies but I have no idea what they are. I am new to ...
0
votes
0answers
212 views
convert Swf to HTML5 error , actionscript function array() not supported
My requirement is to use flash (.swf) file in iPhone. Based on analysis since it cannot be used directly i tried 2 options,
Option 1)to convert to HTML5 using google Swiffy and i get following error
...
0
votes
1answer
48 views
Local Database in sql 2008 inVisual Studio
I have created a local batabse (assume db.mdf) in VS2010 asp.net website. In that I have created few tables. But after creation I realized that I have done few spell errors. Now I need to rename ...
2
votes
1answer
131 views
How to represent login of multiple users in UML use case diagram?
What is the best way to represent the use cases of a system which has multiple users who have to log in to a system, in order perform various tasks?
For example, consider a university system where the ...
0
votes
2answers
384 views
SVG USE element and :hover style
I'm trying to use CSS :hover pseudoclass to style SVG elements embeded from <defs> by <use> tag, but it doesn't seem to work :-/ Here's my code:
<!DOCTYPE HTML>
<html ...
0
votes
1answer
48 views
UML : including use cases of different users?
Is it legal to draw up an include relationship between two use cases that are ,each,associated with a different actor?
0
votes
1answer
67 views
g++ catch use after free not catching, OS X [duplicate]
Possible Duplicate:
C++ - Deleting a vector element that is referenced by a pointer
On OS X I was compiling and running some C++, and it was working fine. But on a linux and windows box it ...
0
votes
1answer
996 views
What is a “use programming language”? [closed]
An IBM internship application firsts asks what knowledge I have of OO PLs, and then asks what I know about "use programming languages". What is a use PL? I have never heard that terminology used ...
0
votes
2answers
45 views
Ext js 4 how I can use store from another app?
I have BranchStore.js and BranchModel.js in my project. And I want use it in all my ext js 4 apps. Is it possible?
0
votes
0answers
116 views
JAVA. Use 2 text files and connect their information
Helo, I have a question.
Now my code looks like, It counting specific word entered by keyboard from file.txt and and elect by who It repeated :
public class Testing {
public ...
0
votes
1answer
323 views
Connecting to Windows Azure Storage Blob with PHP
I am trying to upload files to Windows Azure with PHP.
I installed it manually by downloading/extracting the .zip from github and copying the files to my server via ftp. I have been following the ...
0
votes
0answers
25 views
How to use MonoTouch [closed]
I am developing iPhone application on Mono Touch.The application working properly on iPhone Simulator,But the I new to iPhone programming,I want to know,there is any dependance to use
mono touch app ...
0
votes
1answer
110 views
what is the use of entitlement and how it can be created?
I have created a small app which I have not used any .entitlement file for running in both simulator and device. Its working fine too...But I dono where this .entitlement file is used and how it can ...
0
votes
3answers
121 views
MySQL: ceasing to use a Scheme (Database)?
I need your help...
I want to know how to cease of using a database?
for gain access you can to use:
mysql -u root -pXXXX<ENTER>
later...
at this moment you don't select any DB...
state 1
...
4
votes
1answer
85 views
perl: “unincluding” modules
so, i have a program like this:
#!/usr/bin/perl -w
use strict;
foreach (@data) {
if($_ eq "foo") {
use Foo;
process();
}
if($_ eq "bar") {
use Bar;
...
0
votes
1answer
242 views
How to use Crystalize or Pointilize filter of jhlabs image library in Android?
Can you reply example of Crystalize or Pointilize filter of jhlabs image library in Android? I did write code as my style, but it didn't work. :P
Following code is that I've written. it doesn't work. ...
0
votes
1answer
145 views
What are PHP flags? [closed]
I know this may sound easy for a lot of people, but I've tried to look into it (stackoverflow , php net), and I didn't find a clear answer about what Flags are in PHP. Maybe I didn't look it right. I ...
0
votes
0answers
91 views
How to use ASIHTTPRequest In MAC OSX with xcode 3.1
Everyone I am using ASHTTPRequest for uploading a image on MAC OSX With xcode 3.1,I have download ASIHTTPRequest 1.8 version,and includs all the classes needed to upload image on the server with ...
0
votes
1answer
91 views
Cant USE databaseName against mysql using SQLDeveloper
Yesterday I installed and ran mysql and used it to create a DB called "classicmodels" (Its for cars not women, for the record).
I then connected to it using SQLDeveloper and tried to run a query to ...


