I want to add clickable logo on .flv file. If some one clicks on the logo while the video is playing, it will take to some other page.
Help me
Thanks in advance..
Hi all,
Anybody know how can I add multiple email addresses in Outlook field "To" via C#?
foreach (var to in mailTo)
newMail.To += to + "; ";
When I try do it how I described this above I receive next kind of string:
[email protected]@[email protected]
How can I calculate the number of days from a specific date?in other words add number of days to a date. I looked up NSCalendar and NSdate and could not find anything specific to that regards.
Hi,
I have a project in C# with a Sql-server Database.
In that database I have a table named 'Process' and columns named 'process_name', 'Full_Name' and 'Version' (all of the type:nvarchar(50)).
I want to write a query wich will add the new process, only if it doesn't exist in the table yet.
How can I do that?
Many thanks,
I have several reference apps, and I'd like to be able to let my users "highlight" text. A reasonably good way to do this, to me, seems to be to modify the "copy/paste" contextual popup menu to add "highlight."
If there's a way to do this, I'd like to know how. If there isn't a way, suggestions would be appreciated. My text is viewed in a UIHtmlView.
How do I add a new method to an object "on the fly"?
$me= new stdClass;
$me->doSomething=function ()
{
echo 'I\'ve done something';
};
$me->doSomething();
//Fatal error: Call to undefined method stdClass::doSomething()
First I want to say lots of thanks to "Rich seller" to solving my query for changing the entry order in eclipse java build path programatically.
I want to add my Library folder to java build path which has several jars in it. It should behave like a classpath container.
I tried with IClasspathContainer but failed to implement.
Please help me....
Thanks in advance.
YUVRAJ.
I'm using WordPress as a CMS, and I want to extend one of its classes without having to inherit from another class; i.e. I simply want to "add" more methods to that class:
class A {
function do_a() {
echo 'a';
}
}
then:
function insert_this_function_into_class_A() {
echo 'b';
}
(some way of inserting the latter into A class)
and:
A::insert_this_function_into_class_A(); # b
Is this even possible in tenacious PHP?
How to add properties to a file like the Windows Office?
In Windows, is possible to edit fields from a file like Title, Subject, Keywords etc. How to do the same with an arbitrary file from C/C++ without using Office?
Do you have any hint about API, DLLs or general tricks?
Are there any .NET libraries etc. which allow adding layers (with text) to .tiff images?
Something like annotations, so that it would be possible to separate them from image afterwards.
I tried DotImage - it allows to add annotations, save them as embedded into image and load them afterwards, but no one other image viewer seems to recognize that they are there.
I want to make Waf generate a beep when it finishes the execution of any command that took more than 10 seconds.
I don't know how do add this and assure that the code executes when Waf exits.
This should run for any Waf command not only build.
I checked the Waf book but I wasn't able to find any indication about how should I do this.
I just created a project so my Solution Explorer looks like this:
But I want to add another project which is related to this project but it's going to be a class library and it's going to output a DLL that I could use in any other project.
So how can I create a "solution" with multiple projects?
I have a silverlight application project that I need to add to an ASP.NET Project. I know it can be done because you can choose to have both when you first create a silverlight project, i'm just not sure how you would do it after the fact. Any Ideas?
Hello,
I'd really like to know if there's a way to add the colorbar properties we usually find in surface or mesh, but this time for a simple plot.
Thanx you!
I want to add files to java app in android so I'll know their path and can access them.
How can I do it? (It doesn't matter where they will be the most important is that I can access them and I'll know the relative path of the them)
i want to add default value to the html text box by the view data. the foolwing code will give an idea wht i want to do exactly
<%= Html.TextBox("quantity", <%= Html.Encode(ViewData["quantity"]) %, new { maxlength = 4 })%
but it shows an error. plz tel me the solution for this.
thank in advance....
If i try to use to add a white space in my xslt code a question mark is displayed after it converted to html. Please help to solve this issue.
Thanks
Pradeep
hello i want to add some .h and .cpp files in c# to get the c++ functionality in c# i want to use tha code directly with out making any dll file.
can i do so if yes the how can i do this.
thanx in advance
hello All,
i just want to know that can we add a prefix to auto increment field of a table in mysql?
like my auto increment field of tbl_user is user_id( auto increment). i want this shoud be comes in below way
user_id( auto incremant field)
user1
user2
user3
user4
user5
please suggest me to do this thing by anothey way if it is not possible with auto increment field in mysql??
I have a JavaScript object like:
appointerment= {ids: '15,16,17', appointments: {'15': '12.05.2010,14,05,2010'} }
now in appointments object I want to add something like '16': '21.05.2010'
what is the best possible way to do this?
Hello, I was wondering if you can add a link to a website in a C++ program running in the CMD Prompt type window (No GUI)
If it's possible can some one please give me a few examples?
Thanks.
i want to add the current string in a textview view to a string array in arrays.xml.then display the last/previous string of that array in a textview (setText).