Hi,
Is there a way to know if a remote object implements an interface (I cannot change/add methods to the remote object).
Indeed I cannot use a IsAssignableFrom nor the "as" to test since it's a remote object. Then I have an exception when I try to call a non implemented methods.
Thx
hi
I find way to replace word in text file as the following
strNewText = Replace(strText, "OLD_WORD", "NEW_WORD")t
but this replace every OLD_WORD in the file
my question is if it possible to replace the OLD_WORD with the NEW_WORD only on specific line
for example I want to replace only on line that start with "THIS_LOCATION"
THIS_LOCATION=OLD_WORD
THX for help
I want to scan all the classes in a package that that are subclasses of the particular class.
Then I want to take these classes and for each of them instantiate a bean of same type, using the class as a property.
Then I want to gather all these anonymous beans and put them into collection. Is it possible to configure spring context in XML like this?
Thx
I loaded a plist from the UITable, but there is something wrong. my plist file is some data like that:
3
3uyyhuhu34
.....
5
5uyyhuhu34
.....
11
11uyyhuhu34
.....
I found that the list is sorted from 11, then 3, after that is 5. But I want to sorted from 3, 5 to 11. What can I do to change the behaviors? thx
Hello,
I'd like to know if the executing thread is the one that created a given control instance (to prevent cross-thread if it's not).
Is that possible ?
Thx.
I added a mask to UIView's layer:
CGImageRef maskImageRef = [UIImage imageNamed:"Icon.png"].CGImage;
CALayer maskLayer = [CALayer layer];
maskLayer.contents = (__bridge id)maskImageRef;
self.layer.mask = maskLayer;
Then I use this code to get snapshot from a UIView:
[self.layer renderInContext:mainViewContentContext];
But the mask wasn't drawn.
How to draw self.layer with mask?
Special thx!
I'm witting an application based on a server and various client but I'm having a problem with the send command.
Whenever I do ctrl+c on the client side the send operation kills the thread which is in and the process running (in order to have multiple clients I set a thread to which one).
If the client ends (doing the close socket) properly the server doesn't die, but when I use the ctrl+c combination on the client both exit.
What can I do to prevent send commando to have this behavior?
Thx in advance
I have several entries in a table with name and date. I'd like to fetchAll with Zend_Db then get a grouped-by-date array. It happens that if I use group(), Zend_Db_Select method, it excludes some entries and I need them all.
Actually, what I'm trying to do is to render several tables, one for each different date, with data inside. I have no ideia.
How do I do that?
Thx in advance
I need to print the follwoing:
* need smart way by printf to print this example
param1 ............... value1
param2 ............... value2
param3 ............... value1
param4 ............... value2
THX
how can i force the system to use 2g instead of 3g? there is an option for this in the system settings but i didn't find a function in the android-sdk to set this option!
thx
Maybe i have the wrong context but...
Is there a corelib site for mysql like http://corelib.rubyonrails.org/ for ruby on rails RoR?
Would be nice to have 1 stop shop. thx.
what im trying to archive is to load some images from external servers flickr, but i want to re-size the image before rendering, i want to know if there is any way to load that external image check the size and if its too big then with some c# code do the resizing and then send it to the client?
Thx in advance.
Hello,
i'm using CodeIgniter for developing a community board. As I'm using nested sets to get a nested forum hierarchy, I have to run a lot of queries such as:
SELECT `id` FROM `forums` WHERE 1 BETWEEN `lft` AND `rgt`
My problem: CodeIgniter is replacing the "1" by "`1`" because the "1" is recognized as a column name. Of course, the query does not work any more.
Is there a way to get it working?
thx in advance
I have a table with entries which has a DATE field. Each entry has a distinct date.
I'd like to select all the entries from the last month. How?
I tried SELECT * FROM registries WHERE reg_date = DATE_FORMAT(MAX(reg_date), "%m") without success
thx
What's going on here? What is the subtle difference between the two forms of "unless"?
> irb(main):001:0> foo = true unless defined?(foo)
=> nil
irb(main):002:0> unless defined?(fooo) ; fooo = false ; end
=> false
thx
i spend more than a day to solve this and i can't.
I have a function name int get_nth_digit (int x, int pos); which takes as entering the number given by the user(x) and a number that represents the position in which the user wishes to return the item. How can do this with C program? can you help me pls????
thx
I am writing an iPhone App that uses a HTTPS/SOAP service which needs user credentials. After I change the password used for these credentials from a valid to an invalid one I still get a valid response from the service, as if the password was never changed. When I restart the app (with the invalid password) the app immediately receives the expected '401' message.
Any hints what I might left out to code?
Thx :)
I'd like to select all entries from a table where date is the last one and only those ones.
For example: today is May 16th, the last entries I have from my table is dated from May 15th, but I have older ones (May 14th, May13th, etc). I'd like to select only the dated from May 15th, but it's not this specific date, I need to select every entry dated from the last date I have in my database.
How to?
Thx in advance
hey, I am starting a project and wonder the relationship between the characters in images and the whole web page where the images reside. so first, i want to crawl some images and their web pages.....need to save the crawl result in local disk for further analysis.
I wonder if there is any open source for this issue?
thx^_^
Hi guys
I got some confusion with session handling in php
Ok i know how to regenerate new session id in php by using session_regenerate_id();
The problem is i dont know why i should regenerate new session id
I been goggling for some time and up to no avail
No one explain why i need to generate new session id
Can someone explain why i need to regenerate new session id?
Thx in advance
Anyone know why this doesn't work?
var lastReceivedBeginDate = new Date($("input[name='lastReceivedFromYear']").val(),$("input[name='lastReceivedFromMonth']").val(),$("input[name='lastReceivedFromDay']").val(),$("input[name='lastReceivedFromHour']").val(),$("input[name='lastReceivedFromMinute']").val(),$("input[name='lastReceivedFromSecond']").val());
Thx
Hi,
I was wondering if it would be possible to run app not at 100% of the cpu but at a specific amount of the cpus.
I see different usage of this ,
we can better balance concurrent application ( we may want to have balance app 50% to have fair apps/agent/... )
i was also wondering if the power consumption would not be better if the cpus doesnt run at full throttle but at some lower level( say 80% )
What are your thoughts
Thx
examples are welcomed :)