HI,
I need to know how to set class path for the client tag
under web service of build.xml in java.
I have to add the log4j.properties file to the client jar.
Thanks
Abhi
When using CakePhp would it be advisable to set recursive = -1 in the AppModel class and then use the Containable Behaviour whenever you need a deeper data relationship?
I believe this would give my applications the best chance of avoiding database related sluggish performance but is the methodology sound?
Thanks
Leo
When I initialize a control property from code, the binding to the same property defined on XAML don't work. Why?
For Example, I set control properties on startup with this statements:
myControl.SetValue(UIElement.VisibilityProperty, DefaultProp.Visibility);
myControl.SetValue(UIElement.IsEnabledProperty, DefaultProp.IsEnabled);
and on xaml I bind the property of myControl in this way:
IsEnabled="{Binding Path=IsKeyControlEnabled}"
now, when the property "IsKeyControlEnabled" changes to false, myControl remains enabled (because it's initialize with true value).
How can I do?
Trying to figure out why setloopback needs to be set to true
for microphone activity to be detected.
The problem is the echo feedback when using a macbook with a built in mic.
If anyone has some ideas about this let me know.
Right now I'm experimenting with toggling gain, depending on activity to simulate echo reduction. Not optimal though.
@lessfame
dear friends,
i want have an image and i want to set it as a background of android list view
i have used android:background="drawable/image" but nothing happened
can any one guide me how to achieve this?
any help would be appricated.
hi,
i have an webservive written where any user hit the url can acces the webservice.now i need to set username and password for the webservice so that before accessing the webservice they need to provide the user credentials only valid user would be allowed to access the webservice
how can i achive this functionality. is there any setting tat i need to do
any help would be great
thank you
Hi, i'm using jQuery for sending ajax requests to the server, but i have some problems with the charset. In the ajax function documentation is written that data is always sent in UTF-8 according to the W3C XMLHTTPRequest standard, so i don't think that jQuery allows you to change the request charset (except if you load a script, but that's not my case).
So do you know a way to set the ISO-8859-1 charset for the ajax request in jQuery?
i have installed websvn using apt-get install websvn in ubuntu server.
i can now access websvn through http://url/websvn.
however, i want to set a password to the access, so only authorized people could access it.
how could i do this?
I have a set of data (in ArrayCollection) and I need to fit a power function { f(x)= B + x^alpha } to it, before display in LineChart.
As result I need the alpha and B paremeter.
How to do this with Flex?
Hope this makes sense...
Is there a simple way to return a set of values from a table based on a single column's values being distinctly unique? What I'm hoping for is something like:
SegCode.query.filter(ref.unique()).only('ref')
That's not real code, but I was hoping there was some simple function out there that will accomplish this...
I have an html form whose action should be set dynamically throught javascript. How do i do it? Here is what i am trying to do:
<script type="text/javscript">
function get_action() { // inside script tags
return form_action;
}
</script>
<form action=get_action()>
...
</form>
hi,
Can I set label visibility in Flex ?
newUser = new LinkButton();
newUser.label = "hello";
newUser.labelPlacement = ButtonLabelPlacement.BOTTOM;
newUser.label. //visibility ?
thanks
Hi, I have an input file HTML form and I want to set the initial value for the file path in an HTML form . I try to change tag "value" but it doesn't work anyway.
<input type="file" name="testcase" value= "C:\test.txt">
Please give me some advice for this small problem. Thanks.
Hi overflowers,
After reading a message's state in Zend_Mail_Storage_Imap with $message-getHeaders(). How do I then set that mail as read?
setHeaders(Zend_Mail_Storage::FLAG_SEEN);
Thanks,
Dan
how to set background image in submit button?
I have to use a image in place of regular submit button? which way would be best in xhtml/css?
Button should look same in all main browsers including IE6,IE7
Please help...
I am so confused, how to set Crystal Report 10 data source at runtime
using VB 6.0. I am using SQL SERVER 2005 for database and I create
the reports using stored procedure..
do You have any idea to solve my problem ?
thanks before..
We are using Subversion for SCC. We have a great deal of our build environment in our repository so that we can check a given version out and rebuild it fairly close to what was in use at that time. We have the following in there now:
InnoSetup binaries
Third Party Components
VCL (including Indy)
Our Source (of course)
Finalbuilder project files
The only thing missing is the binaries for Delphi itself - I am wondering if there is a minimum set of files that can be copied to the repository and run.
Thanks
Hi, how do i order a given set of colors from the rainbow in VIBGYOR order. say i input the seven colors in the following order { red, blue, green, yellow, indigo, violet, orange} and i should print the output as {violet, indigo, blue, green, yellow, orange, red}, irrespective of the order i give the output should be as above. Can someone suggest me about implementing this in java program?
Thanks,
-Vijay
Hi can any one tell .. how to set position inside a table.. I have table inside which I have span and certain links .. I made as cetre alignment and span text s starting from centre but when i do the same for all links everthing displayed in centre if it own.. but i need to start all text at the same position/.. how to do this???
How can I set up Django in Window Xp and Ubuntu OS
I finished the step for connection with Database and some problem with connect to admin..
I do it from reading ebook and do it..So there is any easy steps for me..
Please share all idea.
Hi,
I have an ExpenseType object that I have created with the following migration:
class CreateExpenseTypes < ActiveRecord::Migration
def self.up
create_table :expense_types do |t|
t.column :name, :string, :null => false
t.timestamps
end
end
I can see the table name is the pluralised expense_types. My question is, how do I reference this type in a belongs_to relationship?
Is it:
belongs_to :expensetype
or is it
belongs_to :expense_type
I do not seem able to set it up correctly.
Cheers
Hi,
Using CSS, i can set the corner radius of the top corners of a tab in a tabnavigator:
<mx:Style>
.tabstyle
{
corner-radius: 10;
}
</mx:Style>
<mx:TabNavigator tabStyleName="tabstyle" />
However, I also want the bottom corners to have a radius. Does anyone know how to do that??