Hello.
What's best, a repeating background of 100px wide so that the actual file doesn't need to be redrawn 1000X times in width, or a 1px file that probably has smaller file size, but the browser will need to redraw it a lot more.
Thanks.
Hello,
class name: MyAssembly.MyClass+MyOtherClass
The problem is obviously the + as separator, instead of traditionnal dot, its function, and to find official documentation to see if others separators exist
Thank you in advance !
Hello all,
If i want to insert few rows in the middle of the existing table, how do i approach it? Where all that i should be careful when doing such thing? Is there any good sample source available?
Appreciate your helps.
Thank you.
Hello
I'd like my dates in the mm/dd/year format in text fields. However, they currently displays as 2010-03-26.
Is there a global setting I can set to change this?
I tried the following, which seems to update the .to_s method, but form fields stay the same.
ActiveSupport::CoreExtensions::Date::Conversions::DATE_FORMATS.merge!(:default => '%m/%d/%Y')
Thanks
Hello,
I´m thinking about writing an android app, but have no experience in programming such apps.
My question is whether it is possible to access the standart message editor of android with my app and add for example additional information to it or would it be neccesary to write a complete new editor which would be started as a seperate app.
greetings
Hello,
How to Bring (form_x) to the front.
I have a custom usercontrol which opens (form_x) and I use this usercontrol for all of my forms. and now the problem is that the usercontrol opens a new (form_x) instead of Bringing of(form_x) to the front.
Hello!
I have problem with Java's ArrayList. I've created an Object, that contains two atributes, x and y. Now I've loaded some object in my ArrayList. Problem is that I don't know how to find index of some object with x atribute I'm searching. Is there any way to do this?
Hello, I have installed Internet Explorer 8 on my windows XP. Is there any method to install IE7 on my computer? I need to have both versions installed.
Thank you.
hello
is there any way that when i user send an email to [email protected] the php script reads the email's information and replay to the user automatically ?
Cheer
Hello,
In my gtk+ application i have function in mainwin.c:
void
on_prev( GtkWidget* btn, MainWin* mw )
{
...
}
And in file ui.h i have:
#include "mainwin.h"
static const GtkActionEntry entries[] = {
{
"Go Back",
GTK_STOCK_GO_BACK,
"Go Back",
"<control>b",
"Go Back",
G_CALLBACK(on_prev)
},
}
But when i try to compile this application, i see error: ui.h:error: 'on_prev' undeclared here (not in a function).
What's wrong?
Thank you.
Hello,
I am trying to redirect from:
domain.com/uploads/$
to
domain.com/download.php?file=$
$ being the variable.
I have tried many different ways but do not seem to be redirecting, I've tried, R=301,L,QSA and in various different orders.
Anyone help? Thanks!
Hello,
I try to update an iPhone application to support the larger screen resolution on iPhone 4. How to detect if my app is running on iPhone 4 or not?
Thanks in advance.
Hello to everyone, thanks for reading this.
I am implementing paypal checkout in my website it is working but i want to make a simple fees calculator for paypal in order to help the user, i went to paypal and they said their fees amount is 2.9% +0.30 fixed, but it is not working for some cases, for example: deposit $1.34
2.9 % = $0.04 rounded + $0.30 = $0.34, so i should get $1 credited but paypal send in its response in the field FEEAMT which indicate the "PayPal fee amount charged for the transaction" 0.35,
what i am doing wrong?
Thanks in advance.
Hello, i have a table and i want the data from the cells to be printed onto a input field when i click the a specific table cell using the "onclick" command. i was thinking about getdocumentbyid or something like that
greet
I came across a good example written below:
class Test
{
private:
int m_iX;
public:
Test(void):
m_iX(0) { }
~Test(void) { }
void Show()
{
printf("Hello World");
}
};
int main()
{
Test* pTemp = NULL;
pTemp->Show();
return 0;
}
But, what does this code mean and do? Thanks
Hello everyone,
I have a string that I want passed via the "linebreaks" filter.
{% trans "my string"|linebreaks %}
Doesn't work.
Is there another way ?
Hello Everyone!
I just recently started learning different Linux commands but I still don't understand how to use the 'make' command. Please is there anyone that understands how to use 'make'?
Thanks in advance!
Hello
I am wondering what is the difference between
<%# ... %
and
<%= ... %
and
<%$ ... %
?
I couldn't find anything abt it, cause it's impossible to find <%= in search engine;/
Does these constructions have name to look for it?
Could you explain pls?
Cheers
Hello All,
I want to make an sql statement -
sqlStatement = [NSString stringWithFormat:@"SELECT * FROM movies where title like '%%@%'",searchKeyword];
But sqlStatement is becoming -
"SELECT * FROM movies where title like '%@'"
I want to make it
"SELECT * FROM movies where title like '%searchKeyword%'"
How can I escape the "%" character?
Thanks