Hi,
I found this menu and i like it but the client asks me to keep the current menu open with respect to a sub page. For example, if i go to Link One page, then it should be opened by default.
Hello pros out there,
I have this problem with background in IE PC, all other browsers including Mac Safari work excellent.... please help...i almost get fired...
link is:
http://www.imageoneads.com/missiongallery/index.htm
Thanks so much
tran006
Hi Bill
I am facing a problem in creating a trigger and i am not sure why this is erroring out.can you please help me.
I have described the problem in this link below
http://forums.mysql.com/read.php?99,365942,365942#msg-365942.
Hi there,
I am developing an iPhone app, which now can update Twitter account with GPS coordinates in real-time, by the Twitter API link: http://username:[email protected]/statuses/update.xml , and I am looking at how to make my own database to accept updates from iPhone, via a similar API page.
It seems a .php page can serve as the API, and MySQL can serve as the database.
What are the good ways of doing it? Any template code and tutorial please?
Can someone explain what the 'e' flag does, or link me to somewhere that does? I couldn't find anything via google.
Example:
preg_replace("/a(b?)c/e", "search_foo_term('\$1')", $str);
English properties file can be read bt when i click on french link it couldnt read.Can u tell me the stepwise process to do this.I hav images which need to be in french when i click in french..
How can I read wireless signal strength In C++ and Java ?
Please provide a code snippet, a link to a library, or anything else that might show me how to accomplish this?
For my Contact class, the property EmailAddress is marked with the [DataType(DataType.EmailAddress)] attribute.
In my view, using Html.Display("EmailAddress") and Html.DisplayFor(c => c.EmailAddress) yields different results. The former outputs a mailto: link, which is the expected behavior, while the latter simply outputs the email address as plain text.
My question is why the different behavior, I expected these two methods to have the same output.
"Prefer to design UI that guides the user to provide correct input before submitting a form over presenting an error message when he submits it incorrectly"
Is there a canonical link that explains this (similar to KISS)?
Hai
I have one more doubt in apache mod_rewrite.
I want to rewrite the url
mydomain/index.php?category=1&id=1
To
mydomain/index/category/1/id/1
How I write rule in .htaccess
And what is the link that i have to give inside the a tag
Please give me a solution..
I'm trying to take a query:
SHOW TABLES;
which will display a bunch of tables with the chat_ prefix. I want to remove the chat_ prefix from the string, format the variable (with a link), and display it. How is this accomplished?
No, I'm not talking about making a slideshow of pictures. How can I make the actual file that windows (at least windows 7) uses for screensavers?
It is a .scr format, and when I opened it in Notepad, I got a bunch of symbols, with a few words scattered throughout, but that was expected. It looks like it was made with directx, xml, and even assembly (for the shaders) based on the recognizable code there.
I just went on to a site-hosting place and made this:
Link to ribbons.scr code
i have write bellow at this link http://stackoverflow.com/questions/2896811/question-about-siftdown-operation-on-heap code above ritten is pseudo code and i am interested if according to pseudo code my program is correct?
Hi I have an Outlook form that I'd like to provide ready access to by adding a button or link to it on the outlook toolbar. How can I customize the toolbar to do this?
Essentially, a single click of the button on the toolbar should bring up the custom form.
This should work in Outlook 2003 and 2007 (preferably). If it only works in 2007 that would be acceptable.
Thanks!
ie being quite baffling at the mo!
really domn't know how;
$("#info").delay(500).animate({
'left': "0px",
}, 250 );
can throw an erro but it does? Thinks its the animate but not sure how?
link http://rundell.modernactivity.co.uk/
(line 175-177)
works fine in all other browsers.
any help welcome...
I am working on a project where I need to embed a web server into my C++ application. I am looking for an open-source library supporting SSL, written in C or C++ and with a licensing scheme that will allow me to link it into my existing closed source code. Any suggestions of specific products or where to look first?
I just found this code on wikipedia.
Link: http://en.wikipedia.org/wiki/Sizeof#Use
The code:
/* the following code illustrates the use of sizeof
* with variables and expressions (no parentheses needed),
* and with type names (parentheses needed)
*/
char c;
printf("%zu,%zu", sizeof c, sizeof(int));
It states that: "The z prefix should be used to print it, because the actual size can differ on each architecture."
I tried it on my compiler, but it gives the following result:
'zu,zu'
I would like to have direct access to the text inside a textbox on another form, so I added a public variable _txt to a form and added an event like so:
private void richTextBox1_TextChanged(object sender, EventArgs e)
{
_txt = richTextBox1.Text;
}
But the form is loaded like this:
public FrmTextChild(string text)
{
InitializeComponent();
_txt = text;
richTextBox1.Text = _txt;
Text = "Untitled.txt";
}
Is there a better way to directly link the two?
Is there a standard way to create unique web page address in ASP.NET? I'm sending surveys to customers and will be including a link to the web page. For example:
http://www.mysurveypages.foo/survey/UniqueID
I would then customize the survey based on who I sent it to. I know it can be done by passing in a unique parameter to a page but I curious about doing it this way.
I have always liked the documentation on Java APIs, generally speaking, but I know some people consider them lacking. So I'm wondering, what do you consider a good example of API documentation?
Please, include a link or an actual example in any answer. I want to have references that I (and others, of course) can use to improve our own documents.
I'd like a timer class that allows me to call:
.start() .getElapsedTime() .stop() .reset()
Does Java have such a class, or do I need to use my own (which I've already written).
From a best-practice point of view, I should use the Java class libraries classes if they exist, but I'm not sure whether this one does.
Can anyone give me a link to the javadoc for this class, if it exists?
it looks like there used to be an export events button (to rss) but fb have removed it,
i've looked at fbCal but it only exports the event name and the link to the event, but none of the event details.
anyone got any ideas of how i can get multiple event details out of facebook?
Hi,
Can any one give a link to sample example for NSToolbar for MAc OS X 10.5.8.
I had checked with the apple sample iSpend and others, but tehy are all for Mac OS X 10.6.
Thanks
I have a Customer class which has a representative field....this field is initially blank but when the user opens up the details page of the chosen customer, they'll be given the open of representing this customer by clicking on a link. The template layout I was thinking of is this:
<strong>Representative: </strong>
{% if customer.representative %}
{{ customer.representative }}
{% else %}
<a href="{% url representCustomer customer.id %}">Represent this customer.</a>
{% endif %}
All that remains is the view to effect this...this is where I'm stuck.