Hi,
I want to display a UITableView with Multiple Columns.
The first column will have some text and another column will have a button, click of button will navigate to some another view.
Hello,
I am developing a web application for iPhone safari browser.
There is one strange scenario:
A web page is loaded.
User can zoom out that web page to see the contents in zoomed out manner.
There is one button in the web page.
Click of this button will hide one of the 'div' in same page and another 'div' of that same page will be visible.
…
Hi there,
I am using RestWebservice for few basic operations , like creating/searching. The request xml looks something like this
<customer>
<name/>
.....
</customer>
For a successful operation I return the same customer XML with extra fields populated in it(eg. systemId etc which we blank in the request) .
with…
In our LOB application there is a very important use case of printing letters, which are then printed and posted out from a mail house (thousands per day). The current situation is that the letter templates are created in Word 97 and fields are mail merged from values in database using a VB.Net application that basically uses word…
I reterive a result from sql server as
ProjectDetailID,ProjectID,ParentID,...,C1,C2,C3,...
where C1 implies(=) companyOne, C2=CompanyTwo ... etc and dynamically can have 'n' companies
For time being lets consider only 3 companies, So I get :
ProjectDetailID,ProjectID,ParentID,C1,C2,C3
10,1,0,NULL,NULL,NULL…
downloaded the files and got the iso. then made a virtual disk in vmware and then unable to start. my machine details are intel pentium d 945 (that does not support virtualization) while it is an sse2/sse3 cpu. plz suggest some solution
I am looking at various options for a WCF based publish subscribe framework. Say I have one WCF web service that will be the publisher and 1000 clients registered as subscriber. For some published messages all clients will be interested but at the same time I wish the ability to notify a single client with a…
I am writing a sql query which involves finding if timestamp falls in particular range of days.
I have written that in the postgres but it doesn't works in Oracle and SQL Server:
AND creation_date < (CURRENT_TIMESTAMP - interval '5 days')
AND creation_date >= (CURRENT_TIMESTAMP - interval '15 days')…
I am trying to create a Soap Web Service Client using the Visual C# 2008 Express IDE. I Do that by Right-Clicking Project Name-Add service Reference. Everything is working out fine, and the client is being generated as follows
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("operationInfo",…
I am stuck somewhere using jquery to append the list box from a text box.
here is my jquery
$("#btnAddSvc").click(function () {
var svc = $("#<%= txtServiceName.ClientID %>").val(); //Its Let you know the textbox's value
svc.appendTo("#<%=lstSvcName.ClientID %>");
…
I am starting learning for android tablet programming and I am able to updated my Eclipse as well as all new sdk for android. I have start testing application from this blog while at extending the FragmentActivity getting this error I have google it but not getting any solution.…
I am trying to execute the SQL statement from my java application
Due website restriction on url I have replaced http=htp for this post.
SELECT DISTINCT(DID)
FROM (SELECT e_id DID,
xml_doc xml,
rownum rn from employee_master_indexes)," +
…
Okay, just to make it quick.
1) Go to www.simplefire.com.au
- with Firefox / IE
- with Chrome.
2) The image on the right seems to have blue border on Firefox / IE, but Chrome displays the
page perfectly.
Anyone knows what the problem might be?
I'm using wordpress…
Its a 3-tier ASP.NET Website Project
In Data Layer there is class "Common Decalaration" in which lot of common things are mentioned.
Something this way :
public class CommonDeclartion
{
#region Common Messages
public const string RECORD_INSERT_MSG = "Record Inserted…
I am trying to read a file in a servlet. I am using eclipse IDE.
I get a FileNotFoundException if I provide relative file name.
List<String> ls=new ArrayList<String>();
Scanner input = new Scanner(new File("Input.txt"));
while(input.hasNextLine()) {
…
What would be the best way to write an app for the iPhone OS and the Android OS that allows access to a web blog (posted on blogspot.com)? Are there ways to manipulate the incoming data from the website to fit the UI of the phones, or will I have to re-do a lot of…
There is some code like this :
if ( bValid ) {
$( this ).dialog( "close" );
$("#btnExcel_Click").show(); }
and .aspx look like :
<form id="form1" runat="server">
<input id="inpHide" type="hidden" runat="server" />
…
I want to create an interface similar to the following in Silverlight.
http://demos6.dundas.com/Silverlight/
I need to create a dashboard where different elements can be re-arranged using Silverlight. The dashboard elements can be different usercontrols that in…
What is the best way to set default value in ActiveRecord?
I see a post from Pratik that describes an ugly, complicated chunk of code: http://m.onkey.org/2007/7/24/how-to-set-default-values-in-your-model
class Item < ActiveRecord::Base
def…
I have the following code and would like to convert a lot of code into configuration settings for WCF. As you can see, the code is using wshttpbinding.
I appreciate any help on this.
try
{
// Provides a unique…
We're working on a Ruby on Rails app that needs to take advantage of html5 websockets. At the moment, we have two separate "servers" so to speak: our main app running on nginx+passenger, and a separate server using Pratik Naik's Cramp framework…
I'm trying to set up a Rails Template that would allow for comprehensive set-up of a specific Rails app. Using Pratik Naik's overview (http://m.onkey.org/2008/12/4/rails-templates), I was able to set up a couple of scaffolds and models, with a…