Tagged Questions
The pick tag has no wiki summary.
5
votes
2answers
2k views
android pick images from gallery
I want to create a picture chooser from gallery. I use code
intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(intent, ...
4
votes
2answers
578 views
Android pick email intent
I'd like to pick an email from the contacts list.
Picking a contact is not good enough, because a contact can have several emails.
Using the API demo, I managed to pick a contact, phone number and ...
4
votes
2answers
247 views
Efficient way to pick/delete a list of rows/columns in a matrix in Mathematica
This question is in a way a continuation of the question I asked here:Simple way to delete a matrix colum in Mathematica to which @belisarius and @Daniel provided very helpful answers.
What I am ...
4
votes
1answer
30 views
Detect empty pick() from hash in KRL
I have a bunch of data in a hash and I am picking from it. Sometimes there will be data there to pick and sometimes there won't. What is the best way to know when there was something found by the pick ...
3
votes
2answers
47 views
KRL and Yahoo Local Search
I'm trying to use Yahoo Local Search in a Kynetx Application.
ruleset avogadro {
meta {
name "yahoo-local-ruleset"
description "use results from Yahoo local search"
author "randall ...
2
votes
1answer
493 views
Android: How to multi-select images through intent?
Hey,
I searched the Internet for quite a while without finding a solution.
I want to let the user pick images of his gallery using an intent.
For this i use a GET_CONTENT intent:
Intent ...
2
votes
5answers
873 views
UniVerse RetreiVe how do I query a file for all of its columns' values?
Kind of a follow up to my self-answered question about finding the column names.
In UniVerse you can't query a file for all of its columns unless the @ phrase in your file's dictionary is set to all ...
2
votes
2answers
150 views
Pick and RDF/SPARQL
Anyone have any interest in intergrating RDF and/or SPARQL with a PICK database?
Has anyone tried this yet?
I have some thoughts about what to try. One idea is to figure out how to create a file with ...
2
votes
6answers
2k views
Connect to Pick Database using Odbc C# .Net
How to Connect to PickBasic database using Ole db driver .. I need it badly help me out
1
vote
0answers
171 views
android intent pick item from music browser
I want to create an intent to launch a music browser activity (every default music player has such an activity), to pick a track and use it in my application.
I tried using the following code, but ...
1
vote
0answers
69 views
Creating Pick List Database
I have 2 spreadsheets
Spreadsheet 1:
Order ID SKU Quantity
Order 1 Item1 2
Spreadsheet 2:
SKU Inventory
Item 1 Item A; Item B[2]; Item C[3]
...
1
vote
2answers
170 views
Constants in pick/UniVerse database
How to declare a constant value in
PICK/UniVerse database?
How to pass an argument to a
function by constant reference?
There is some information in the IBM's manual for UniVerse database about ...
1
vote
1answer
88 views
UniTransaction throwing NullReferenceException
I'm trying to begin a transaction however on calling the .Begin() method throws a NullReferenceException and the stacktrace shows that it is coming from ...
1
vote
4answers
514 views
How do I find the column listing in UniVerse with RetrieVe or SQL?
I've got an issue where a table (file) is set up to return column foo on LIST table and SELECT * FROM table. I need to know the other possible columns in table. I'm pretty sure this was achieved by ...
1
vote
3answers
662 views
UniCommand differences for UniData
I'm new to the world of UniObjects as I've been in .NET land since it debuted. After building a simple app to return the select list of a UniCommand statement I noticed that there are some major ...
0
votes
3answers
46 views
bash picking arguments
I want to write to function witch
when I have something like that
echo 1 2 3|pick
pick will take arguments and I will do something with that.
How to do that?
0
votes
0answers
35 views
Android: Getting a Uri from selecting a picture
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
intent.putExtra("crop", "true");
intent.putExtra("aspectX", ...
0
votes
1answer
45 views
Pick a random name from a text file in VB
I have a file that has names of competitors. I want to write a VB code that selects a random name from the file.What I need is show the names moving quickly once I press enter it will select the name. ...
0
votes
1answer
304 views
Picking objects in Android OpenGL ES using colors does not retrieve correct colors
I am very new to OpenGL and I'm doing a very simple program to check if I can pick objects rendered on the screen, drawing each one with a unique color. So far, I render 2 flat squares and one ...
0
votes
0answers
26 views
BPEL pick late message handeling
I'm creating a BPEL:
- which send a msg and initializes the correlation.
- receives the msg with the pick activity, using the before created correlation.
- if the msg doesn't arrive in X time, ...
0
votes
0answers
59 views
how to handle multiple events in WF 4.0?
I am trying to figure out how to implement the following scenario in WF 4.0 but I am still too new to WF 4.0 to do it without a little help.
Scenario:
A1: An activity that executes a process where ...
0
votes
0answers
263 views
I need an Analog jQuery clockpick
I need a clockpicker. I would like a jQuery plugin because I use this library in my application. I need any plugin that might be for minute selections. It shouldn't be only for defined ranges. If ...
0
votes
2answers
307 views
What's the best jQuery clockpick plugin?
I need a clockpicker. I would like a jQuery plugin because I use this library in my application. I need any plugin that might be for minute selections. It shouldn't be only for defined ranges. If ...
0
votes
1answer
126 views
.NET and Pick Database D3
I want to connect my .net application with D3 pick database 9.0 (Windows version). In Earlier days, people used ODBC driver from Pick to write VB6 applications connecting with D3. Can I use same ...
0
votes
0answers
208 views
Pick intent does not work for single task activity
I am working on File Browser app and it has Files activity.
If I set the Files activity as singleTask in manifest, the pick intent coming from Email app does not pick an item from File Browser and ...
0
votes
1answer
919 views
is it possible to selecte multiple contacts from contact picker?
i am using contact picker, is it possible to select multiple contacts with the help of checkbox in contactpicker activity? is there any other possible way?
P.S: now i am using a contactpicker ...
0
votes
2answers
618 views
Multi-valued Database (UniVerse) — SM (MV) vs SM (VS) and ASSOC()
I have a question taken from pg 16 of IBM's Nested Relational Database White Paper, I'm confused why in the below CREATE command they use MV/MS/MS rather than MV/MV/MS, when both ORDER_#, and PART_# ...