|
Already solved...
Nice suggestion to use focus on the desired control, but it did not make it... Anyway returning false after the function worked...
See Graham Breach[^] answer[^].
Thank you again for your time and feedback!
|
|
|
|
|
It is not a floating div... Not at least if you are speaking about the "float" style.
Anyway I've searched for the overflow parameter and I've seen that it is used to show scrollbars...
Thank you for your feedback.
|
|
|
|
|
Already solved Richard,
Graham Breach[^] has saved me!
The way to do it was to return a false... See his answer[^].
thank you for your time and help!
|
|
|
|
|
Make sure that your click handler returns false:
<a href="#" onclick="function();return false">Link</a>
or
<a href="#" onclick="return function();">Link</a>
if function() returns false.
|
|
|
|
|
Definitely Graham... there should be a button with more "o" as in "Goooo...oooood answer".
This was one of those things that can't be searched in the internet (not at least with my google-fu).
a big THANK YOU!
|
|
|
|
|
|
hello guys... I dont know where to put this question. Lets say I have made a notepad in C#.NET. Now how can I run that notepad on linux platform? thnx
|
|
|
|
|
Have you looked into Mono[^] yet?
Mono is .Net for Linux but I believe it's limited to .Net 2.0.
Developing Mono (.Net) for Linux can be done with a Visual Studio plugin for Windows or MonoDevelop which also runs in Linux.
|
|
|
|
|
Mono can run .NET 4 applications under Linux, even without recompiling.
Bastard Programmer from Hell
|
|
|
|
|
I think you can run it on the Linux. Because Linux is also an operating system. It allows the application to run the compatible software.
Website Templates | Joomla Templates
modified on Thursday, July 14, 2011 1:36 AM
|
|
|
|
|
its better u do in windows platform because on linux it wont run fully and still u want to then there are some linux which provid a good form of .net eg.suse
|
|
|
|
|
You need install Mono on Linux. If your .NET app using .NET 2.0, you can run you app on Linux. I'm using Ubuntu 11.04 and run KeePass 2.15, a .NET open source. Just exit to terminal and type "mono KeePass.exe"
Using MonoDevelop, you can develop a C# application on Ubuntu.
Also, you can run ASP.Net and C# on Ubuntu too.
http://www.vn-software.com/
|
|
|
|
|
If you want to just run it you can do this without problems if it is that simple and written in .NET 2.0 because wine(the emulator for windows apps) can handle it. But if you want to develop, Mono is the answer. Latest versions are quite good.. 
|
|
|
|
|
Riceto wrote: is that simple and written in .NET 2.0
You obviously haven't used it yet. Support goes beyond .NET 2.0[^], and it's quite capable.
Bastard Programmer from Hell
|
|
|
|
|
While most of ms .net is working and implemented in mono (expect a lot of winforms and wpf) you are pretty safe with server side code, as for UI code except for rudimentary winforms, you will be looking at a major porting project.
While the plug has been pulled by Novel, Miguel De Icaza has created a spin-off company to keep mono running.
Like most ports you will be looking at a significant porting operation I'm afraid.
Its the man, not the machine - Chuck Yeager
If at first you don't succeed... get a better publicist
|
|
|
|
|
Wine may not help him directly because it is not a direct Win32 port. There is a .NET runtime involved and hence he may need Mono runtime in his case.
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
The woods are lovely, dark and deep,
But I have promises to keep,
And miles to go before I sleep,
And miles to go before I sleep!
|
|
|
|
|
Hi All,
Can someone tell me how can i upload or submit my php website to google apps engine.
Though I can create a new application in python/java/go environment to submit it google appspot but is there any way to upload php website to google apps.
Thanks in advance.
Anoop
anoop
|
|
|
|
|
Hi all,
I wonder I've done something wrong with PHP or MySql.
I've a table as follows,
<br />
CREATE TABLE `my_db`.`language_translations` (<br />
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,<br />
`SectionID` int(10) unsigned NOT NULL,<br />
`QuestionID` int(10) unsigned NOT NULL,<br />
`Text_eng` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',<br />
`Text_lk` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',<br />
`Text_ta` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',<br />
PRIMARY KEY (`ID`)<br />
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 PACK_KEYS=1;<br />
And I select data with the following function, but the text displayed as ???? characters.
<br />
function GetTranslationList($m_section_id, $m_question_id) {<br />
$sql = "SELECT * FROM language_translations WHERE SectionID = ".$m_section_id." AND QuestionID = ".$m_question_id;<br />
<br />
$data = CDBCon::GetInstance()->GetAll($sql);<br />
print_r($data);exit;<br />
return $data;<br />
}<br />
anyone of you have an idea what I've done wrong here?
Thanks
I appreciate your help all the time...
CodingLover
|
|
|
|
|
Is your file saved as utf8 (better without bom)?
Also you should add in your html
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
...Plug & Pray...
|
|
|
|
|
Yes I do.
Anyway I have found the solution myself. PHP.ini configured incorrectly with multi-bite strings. Now everything working fine.
I appreciate your help all the time...
CodingLover
|
|
|
|
|
Hi,all
This is My Php Code
<?php
$from = "someone@something.com";
$to = "someone@something.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$host = "myhost";
$username = "mail@myhost.com";
$password = "something";
$port=25;
$headers = array ('From' => $from,'To' => $to,'Subject' => $subject);
$smtp = Mail::factory('smtp',array ('host' => $host ,'port' => $port , 'auth' => true , 'username' => $username,'password' => $password));
Now How Can i Call mail(); Function?
Please Help Me
Arunkumar.t
Arunkumar.
|
|
|
|
|
Is this what you are searching for Example 1[^] ?
[Edit]
Example 2 [^]
[/Edit]
Regards
modified on Saturday, June 4, 2011 6:23 AM
|
|
|
|
|
I Know The Mail Function In php
I want to know how can i pass the smtp information through mail() function
|
|
|
|
|
i try to upload videos to youtube using zend library , but i have a problem that i may upload a video that is already uploaded (duplicate) , so the youtube refuses to upload it , i need to know the id of the duplicate video that was uploaded before .
please if any body can help me...
thanks in advance
|
|
|
|
|
Hi All,
I am getting null value for some virtual machines.
Do anybody have any idea regarding permissions that we need to get this object from machines.
Thanks
|
|
|
|