A representation of something, typically showing a single aspect of a larger whole.

learn more… | top users | synonyms

0
votes
1answer
16 views

WPF Multiple Buttons to Navigate multiple pages with one frame

I have buttonA and buttonB. I have FrameA and Page1 Page2. Question: ' If I clicked buttonA how would I show Page1 through FrameA? Then I clicked buttonB how would I show Page2 through FrameA? ...
0
votes
0answers
14 views

css only conditional form works in firefox, but not chrome. Can you look over this codepen?

I was trying to be clever with this conditional hiding and showing of a text-field based on its adjacent radio being selected. It works in firefox just fine, but not chrome. Can someone confirm that ...
-1
votes
0answers
16 views

How to read data from excel file (.xls) using java only? [closed]

I need sample code for reading data from excel file using Java (i.e. without using any third party jars eg: Apache POI ). Is it possible? if possible means please share the java code to me. Thanks ...
0
votes
1answer
27 views

Example of unit testing in sikuli [closed]

Please bear with me as a newbie, who is self-teaching on a number of fronts here. I need some simple examples that would help in learning how to do unit testing in sikuli. Could someone help me out ...
0
votes
1answer
18 views

rspec - how to have examples without both 'describe' and 'it'

Given the following working code: require 'rspec' require_relative 'dec_to_hex' describe "Should convert 20 to 32" do it "should convert correctly" do converter("20").should == 32 end end ...
-2
votes
0answers
23 views

Encrypting a File with AES in C#.net [closed]

I am looking for a good and performant example to encrypt a File in C# dotnet. Can anyone provide a nice clean example.
0
votes
0answers
13 views

Java Pet Store alternative with no Javascript or AJAX [closed]

I'm looking for a small Java EE example application that is similar to the Java Pet Store or Duke's Bookstore. I'm trying to find and evaluate web crawlers that can access content which is hidden ...
0
votes
0answers
27 views

starting new activity from json listview

I am new to android and I'm trying to make an application to my website. I have a webservice json that shows items in a list view in android. This list shows only 3 items. I need to implement this ...
0
votes
1answer
21 views

Example project or agencies that use JMapViewer [closed]

I am in the process of building a desktop application for a client. It will use open street map with JMapViewer for the Display Engine. The client is generally on board with pursuing the open source ...
0
votes
1answer
19 views

Qt: Simple DOM Model Example Memory Leak

I think that the Simple DOM Model Example in Qt has a memory leak. The following code is used to create the wrapped DomItem objects that are used to track the QDomNodes. DomItem *DomItem::child(int ...
0
votes
1answer
37 views

How do I seed a directory or file using python-libtorrent?

After several hours of looking for the answer I've had no luck. Can anyone point me to an example of how to create a torrent and seed that brand new torrent in python? So far I can download just ...
1
vote
2answers
44 views

Qt example: no mutex lock when reading, why?

I am looking at this example, and it raises a queston for me: when looking at this file a mutex is being used when accessing the global variable m_abort when its being changed. But when the run method ...
0
votes
0answers
27 views

libpd with python2.7 and mac os x

I have installed pure data libpd in python 2.7 on mac osx 10.7. when I try to run the example provided in libpd for python, none of the example is giving sound. test.py is dumping some text, no sound ...
7
votes
2answers
147 views

Practical examples of use for Clojure's new some-> macro

Clojure 1.5 adds new threading macros, including: some-> some->> The changelog has this contrived example to illustrate how some-> works: user=> (defn die [x] (assert false)) ...
0
votes
0answers
23 views

Workflow Foundation - Advice on a simple process

I am starting on Workflow Foundation 4 and i've been asked to do a simple example to show to a client (unfortunatly in a tight timeframe) and i could use some help on how to start with it. The ...
0
votes
1answer
49 views

What are some examples of Dynamically loaded content changed by onClick events with images? [closed]

So, I'm struggling to articulate the nature of what I'm looking for concisely. I feel certain I've seen it done, but essentially I'm looking for a set-up or example by which one has a series of images ...
0
votes
0answers
22 views

Android - Help me with collision detect(with Paint Example xD)

I have problems with the collision detect, or rather, I can check whether the collision occurs, but can not prevent the images overlap. Because of my English maybe I can not explain well my problem, ...
0
votes
1answer
47 views

How to add node in existing xml using php simpleXML?

I have a xml file like the bellow, and I need to add a new node with some child node and attribute. <custscales> <custscale sclNo="1" type="lin"> <scaleName>Custom Scale ...
0
votes
0answers
16 views

Android drag as possible, only away from the collision

hi all as the title I wanted to know how to make sure that once the collision occurred, the drag and drop function is applicable only in the opposite direction to the collision, to avoid that the two ...
0
votes
0answers
19 views

What examples are there for the “closest pair of points”?

I'm looking for a motivational example for the "closest pair of points problem" http://en.wikipedia.org/wiki/Closest_pair_of_points_problem In itself it's a pretty self explanatory problem, but I ...
0
votes
1answer
51 views

Equivalence partitioning, it this an incorrect example in a book?

I am trying to understand this topic and starting with the very basic one (not discrete domain), I believe this is not correct. I cannot post images yet so the description goes like this: Income ...
0
votes
1answer
89 views

How to data-bind a label

How to bind the content of a label to the class2 property PropName? Class2 is not directly being used in Mainwindlow.xmal.cs. Class1 is being used in Mainwindow.xmal.cs And Class2 is being used in ...
3
votes
1answer
62 views

How to GroupBy interest rates?

I have the following table that i want to consolidate the interest rates using group by. Lower Limit, Upper Limit , Interest rates 0 to 5000 , 0.02 5001 to 10000 , 0.02 ...
1
vote
0answers
202 views

cucumber jvm selenium example

I am using standart exsample: cucumber-jvm-selenium-example When I run test: ------------------------------------------------------- T E S T S ...
0
votes
2answers
57 views

Group by Time(Only hrs part) in linq

I have a datatable that has following columns CallTime CallType 15:45:00 Voice 15:30:54 Voice 00:12:14 SMS 01:13:47 Voice 05:48:23 SMS 12:00:47 Voice Now what i want Using Linq ...
0
votes
1answer
38 views

LINQ GroupBy to get Name and A Count

I'm a little confused on how to use a GroupBy in Linq. I need to display the name of a Product and Count it's offers, I've come up with this var context = new Model.Entities(); var query = from p in ...
0
votes
4answers
99 views

C# determine if all characters in a string are the same

I have a situation where I need to try and filter out fake SSN numbers. From what I've seen so far if they are fake they're all the same number or 123456789. I can filter for the last one, but is ...
3
votes
2answers
36 views

How to Select the Token and Index from a Comma Separated String in Linq

Given a comma delimited string "a,b,c" I would like to split the string and select the token and its respective index into a list. In other words, I want "a,b,c".Split(',') to return a list of: a, 1 ...
0
votes
5answers
55 views

Linq, unable to list only distinct results

I have three tables, car_type, car_manufacturer and car_model. When the user click on the particular vehicle type they want to browse, I'd like to show them a list of available manufacturers. The ...
0
votes
5answers
133 views

Merge 2 arrays using LINQ [duplicate]

I have two simple array and I would like to merge using join linq: int[] num1 = new int[] { 1, 55, 89, 43, 67, -3 }; int[] num2 = new int[] { 11, 35, 79, 23, 7, -10 }; var result = from n1 in num1 ...
0
votes
1answer
60 views

Linq group by using reflection

I have data table "Car" which have 3 cols (owner, carType, colour). My question is how can i make the grouping portion more dynamic by using reflection. my idea is add the grouping col in to array, ...
1
vote
2answers
147 views

Parallel Programming using TPL on WinForms

I trying to use TPL on WinForms .NET 4.0, I followed this steps (go to the end of article) that are for WPF and made some small changes so it could work on WinForms but it still doesn't work.. It ...
0
votes
0answers
40 views

Unconditional branching (GOTO) - how decision coverage can be lower than branch coverage?

Often the branch coverage is referred as a decision coverage,however they are not the same. Can anyone give me an example following the definition below and showing how decision coverage can be lesser ...
0
votes
2answers
51 views

Linq union list (property) of a list of objects

I have two classes, Person and Group class Person { public virtual ICollection<Group> GroupsWhereIAmMember { get; set; } public virtual ICollection<Group> GroupsWhereIAmSender { ...
1
vote
5answers
71 views

Using LINQ how can I prioritise an IEnumerable based on ranges?

If my data is a List<Cat> and each Cat has an age of 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 I want to re-order the list according to the ranges 1-3, 4-8, 9-10 such that the resulting list will be 3, ...
1
vote
1answer
44 views

How To Make Mini Example For DrawingArea Display Something

I've written a mini example for DrawingArea which, when started, displays nothing. If I insert a raw_input() just for waiting for a keyboard press at a specific place, it functions, so this is a ...
0
votes
1answer
59 views

How to get the correct data with a linq statement

The question evolved from the original post, so to broaden the results I have added a seperate question. the original quest was answered, but in doing so I ran into a new problem that has stumped me. ...
2
votes
1answer
25 views

IEnumerable query with GroupBy with Min and Projection

I have these arrays correlated by index. So for each index (ObjId, ObjState) form a pair. string[] ObjIds = { "Obj1", "Obj1", "Obj2", "Obj2", "Obj1", "Obj3", "Obj2", "Obj2" }; string[] ObjStates = ...
5
votes
3answers
121 views

Check if a list of integers increments by one

Is there a way, with LINQ, to check if a list of integers are "sequential" - ie 1,2,3,4,5 or 14,15,16,17,18?
2
votes
6answers
171 views

How to find duplicate items in list<>?

I have: List<string> list = new List<string>() { "a", "a", "b", "b", "r", "t" }; How can I get only "a","b"? I tried to do like this: List<string> list = new ...
0
votes
0answers
30 views

How to use Boxy

I can't seem to find a comprehensive explanation on how to actually implement the Boxy files that I have uploaded to my website, to then create some sort of pop out message or form. How can I do this? ...
1
vote
1answer
62 views

PHPDOC Examples Without Line Numbers

According to PHPDocumentor's documentation, to show an example it would be like this: @example [location] [<start-line> [<number-of-lines>] ] [<description>] This seems like a ...
0
votes
1answer
37 views

Http Header Range (HTML + Java Example)

I have a requirement to load big images into chrome browser, in pieces from the server and after it finishes downloading the file completely, if the user wants to look at the file again, then the ...
0
votes
1answer
333 views

Useful examples of Kinect in combination with Unity?

My colleague and I are working on a project where we need to use Kinect to control an application made in Unity. We have familiarized ourselves with Kinect and Unity, but we can't find any examples or ...
0
votes
4answers
126 views

An example of use of varargs in C

Here I found an example of how varargs can be used in C. #include <stdarg.h> double average(int count, ...) { va_list ap; int j; double tot = 0; va_start(ap, count); //Requires ...
0
votes
1answer
110 views

How do I program android to look for a particular network? (Issues Following Simple Tutorial)

I'm attempting to use the following example: How do I program android to look for a particular network? But I'm unable to execute it due to issues stemming from the line: WifiManager wifiManager = ...
3
votes
1answer
60 views

Lambda Calculus Expression Test-bed?

I would like to test out the Lambda Calculus interpreter that I've written against a fairly large test set of Lambda Calculus expressions. Does anyone know of a Lambda Calc expression generator I can ...
0
votes
2answers
93 views

Connecting perceptrons with output of previous ones?

Because of the help I received and researched here I was able to create a simple perceptron in C#, code of which goes like: int Input1 = A; int Input2 = B; //weighted sum ...
1
vote
1answer
52 views

Add item to GUI jCombo box

I have a Java program with a model and a GUI. On my Frame (that implements Observer) I have put a jcombobox with a list of registration from my model (that extends Observable). When I click on a ...
3
votes
2answers
62 views

Has anyone implement DITA 1.2 Subject scheme in their work?

I would like to know if there is anyone who has implemented the subjectscheme maps of DITA1.2 in their work? If yes, can you please break-up the example to show: how to do it? when not to use it? ...

1 2 3 4 5 11