Hi,
In the past I used railsbrain.com to have a nice and handy offline api documentation.
But they stop at version 2.3.2
Is there any other solution with latest version.
Thanks
Hi,
I am trying to create a customized UISearchBar. I am not able to find all possible methods using documentation. Is there way to find all the available methods ?.
Hi guys,
Just want to hear some opinion on adding App_Code in Web Client Software Factory (WCSF) project. The main purpose is to put reusable UI rendering codes which can be use by various pages.
For WCSF, I guess only controller can share across pages within a module which does not seems to be a good place for UI stuff.
Suggestions? :)
Hi,
I am using JBOSS 4.2.2 server to deploy multiple web applications. Each application uses Hibernate and for each application there are saperate log files and saparate appendar. Now for Hibernate logging statements of one application should go in log file of that particular application. Does anybody has idea how to configure log4j.xml file to achieve this?
Thanks and regards,
Milind
hi,
I saw in many application like Zara, Zara Home, D&G.. that instead of using the Default.png image for loading the application, they use a video instead. Did someone know how to do it?
Did they manage to replace the Default image and put an animation instead or just load an animation in the ApplicationDidFinishLaunching
Thanks,
Hi there, a newbie powershell question:
I'd like to make an alias in powershell exactly equivalent to this Bash alias:
alias django-admin-jy="jython /path/to/jython-dev/dist/bin/django-admin.py"
In tinkering with it so far, I've found this to be very difficult.
-Powershell Aliases only work with Powershell commands + function calls
-No clear way to allow for an unlimited number of args on a powershell function call
-Powershell seems to block stdout
Hi all,
I am testing my web application's security and all of my pages are served over ssl. The issue I am having is the certificate is not trusted as firefox starts in a new profile each time. I was reading on OpenQA's site about a jar and importing the certificate, but that is only for Internet Explorer and Firefox should automatically be handled.
Is there anything special I need to do in order for certificates to automatically be trusted?
Thanks,
Walter
Hi,
My checkout/export session in svn is kinda weird. The file is just a 300KB in size but the downloading keeps going and it reaches a megabytes in size. The file is in RPM format. I don't know if the file is corrupt or the SVN has a bug. I tried to download the file using web browser and seems the downloading works fine. What probably is the main problem is here?
Hi,
I am using SSIS to transfer data from MS SQl server as data source and Sharepoint list as data destination. Now, I need to fire an update command on the sharepoint list. Please guide me to implement this.
Hi Friends,
Is there any way to change the frame of the UIAlertView in iPhone or iPad. I tried changing the frame in the following delegate method- (void)willPresentAlertView:(UIAlertView *)alertView;
but even then the width of the Alertview remained unchanged. And I think a small Alertview in iPad will not make sense. And I guess there must be a way to achieve it, at least in iPad.
Thanks,
krishnan.
Hi all,
I've recently downloaded and installed WebSphere Application Server 7.0 on Windows 2003.
I wanted to do a jstat (JDK 1.6) to probe the JVM but I kept getting " not found" message.
Any idea why this is happening?
Nicholas
Hi I have the following UK postcode dy8 3xt and know that the latitude and longitude is:-
52.190108
-2.517266
I also know that the Eastings, Northings for the postcode is:-
389490
283880
However I am struggling to find the equation that converts lat/long to northings and Eastings, I would prefer to have the equation in both in jScript and c# (I am being greedy)!
Can anyone help?
Hi all,
I have a little console C# program like
Class Program
{
static void main(string args[])
{
}
}
Now I want to do something after main() exit. I tried to write a deconstructor for Class Program, but it never get hit.
Does anybody know how to do it.
Thanks a lot
Hi,
How do i access objects of an anonymous type outside the scope where its declared?
for e.g.
void FuncB()
{
var obj = FuncA();
Console.WriteLine(obj.Name);
}
??? FuncA()
{
var a = (from e in DB.Entities
where e.Id == 1
select new {Id = e.Id, Name = e.Name}).FirstOrDefault();
return a;
}
Hi,
I'm using a RichTextBox class to make some automatic text formatting. And mz question is, how do I get the RichTextBox to put some string immediately after the caret.
When I use RichTextBox.CaretPosition.InsertTextInRun("some string") the text is inserted after the current logical block, but I need to be insterted immediately after the caret, in the middle of a Run block. I hope it's clear, thx very much.
Hi,
I have 3 tables for localization: Locales, ResourceKeys, and Resources. Resources is a many to many table between ResourceKeys and Locales, and stores Resource values for each resource key in multiple languages.
Now if I have a table called Event, which needs a localized title and description, how do I best do this? Do I create foreign key columns in Event table which point to ResourceKey IDs each for title and description, or is there a better way?
HI
i new to android. i want to use ksoap to connect to web service. i have seen a lot of example. but the bet which i am not able to figure out is how to install ksoap in eclips
so that i can import the ksoap libs
import org.ksoap2;
Hi, do you know a Google API or a jquery js plugin to visualize the data like "Wonder Wheel"?
I'd like to use this widget with my data.
http://bit.ly/dysDQn
Hi,
I faced a telephonic interview recently and I was asked to write a program. The program is non-trivial to understand, but I am asked to write the program. I wrote the program and interviewer showed me bugs on some corner cases. I wish, I could have found the corner cases earlier. what does everyone do in this case.
Thanks
Bala
Hi!
How can I determine/calculate the byte size of a bitmap (after decoding with BitmapFactory)?
I need to know how much memory space it occupies, because I'm doing memory caching/management in my app. (file size is not enough, since these are jpg/png files)
Thanks for any solutions!
Hi all,
When writing Hebrew to a database the text is written from left to right, Hebrew is Right to left, my app is writing olleh and not hello (in Hebrew of course).
To read the Hebrew into my app I use System.Text.Encoding.GetEncoding(1255);
My question is what am I missing when writing the text to the db?
Many thanks
Jonathan
Hi! I need to change the type of my primary key column on a table from int to guid. The database already has data that I don't want to lose, and there are foreign keys to consider. Is there a painless way to do this or do I have to manually do it through a big a** script?:) I would appreciate any suggestions