Tagged Questions
The mulitple tag has no wiki summary.
5
votes
2answers
123 views
How should I write the ActiveRecord when there are multiple associations?
The models are like this:
class Contract < ActiveRecord::Base
belongs_to :buyer, :class_name => 'Customer', :foreign_key => 'buyer_customer_id'
belongs_to :user, :class_name => ...
3
votes
3answers
464 views
How to match multiple lines with Regex in C#?
I have the following text:
--------------030805090908050805080502
Content-Type: image/jpeg
Content-Transfer-Encoding: base64
Content-ID: <part16.07030906.00090703@highcontrast.ro>
...
1
vote
3answers
403 views
Multiple preferences?
I have multiple views that come and go as the application runs. I want each view to have its own personal preferences that are stored as the ID tag of the view. Above these is the "General ...
1
vote
1answer
269 views
(Android)Why the selected contacts do not appear in the textview?
I am creating a multiple choice layout for contact list. I successfully pick the contacts.However, instead of displaying the contact name in text view,it appear as String value. Please help.I just ...
1
vote
2answers
60 views
is it possible to fetch data from multi dbs through one connection request
I need to work on this poorly designed db where a new group of data are established by adding a new db to the server. So I have to fetch data from multi dbs, I wonder is there a way to get all thoes ...
0
votes
0answers
59 views
Actionscript: array.sortOn with multisorting and criterias
Here is my problem:
In an array, I have severy object with several common properties, like on this exemple, with alphabetical titles and dates:
1: A, 2009
2: B, 2008
3: C, 2007
4: B, 2006
I then ...
0
votes
1answer
99 views
Calling the same AlertDialog in the AlertDialog
I have an AlertDialog that prompts user if they want to send data. What I am doing is that I check if there is internet connection, if not I will display the dialog again.
The dialog displays but ...
0
votes
0answers
18 views
Need Jquery based Simple Mulit Level Drop down Plugin
I need to help for implementing the Multi Level Drop down Menu in my site.
I have visited lots of URL but did not found any simple and smooth Drop Down.
Can anyone please tell me the link or Send ...
0
votes
3answers
190 views
Need help in specific scenario , Iterate ArrayList with multiple condition in java
Scenario : An Arraylist containing following DTOs'
MetadatRetrievalDTO[] dto = new MetadatRetrievalDTO[16];
dto[0] = new MetadatRetrievalDTO();
dto[0].setArticleId(11);
...
0
votes
0answers
88 views
Importing excel data to xml with one column having different values?
I am trying to convert my data to XML using Excel. However for one of the column: lcd_size, I have multiple value for it. How do I get it to display in the following way below?
0
votes
2answers
1k views
WCF Nested Call-back
The backgound: I am trying to forward the server-side ApplyChangeFailed event that is fired by a Sync Services for ADO 1.0 DBServerSyncProvider to the client. All the code examples for Sync Services ...