http://codeissue.com/issues Recent Issues - CodeIssue.com 2013-06-19T03:33:48Z http://codeissue.com/issue.php?i=i951a7ef99d94b0 Connexion CDE_Oracle Yogaraj Khanal http://codeissue.com/profile.php?p=2000 2013-05-31T08:27:25Z 2013-05-30T20:32:25Z Dear all, I tried to build a dashboard with CDE plugin.I have a problem in the connection to the datasource. My database is oracle 10g. first I have to use Jndi or Jdbc? and what about the configuration? Pleaaaaase help me it's urgent. Thanks in advance http://codeissue.com/issue.php?i=i84e31c5ce48988 How can I use jQuery in Eclipse Yogaraj Khanal http://codeissue.com/profile.php?p=2000 2013-05-23T06:53:36Z 2011-07-28T16:25:50Z Hi, I am planning to work on some UI tasks that we have selected jQuery to do it. How can I use jQuery in eclispe? Thanks, Martin http://codeissue.com/issue.php?i=i75163c250172fd We Development Rd Nard http://codeissue.com/profile.php?p=2179 2013-05-11T09:35:30Z 2013-04-09T03:25:04Z I created Dropdown with the Select and option ,I want dropdown should get closed on hover of mouse http://codeissue.com/issue.php?i=i74e42c2ee8290a Regular expression to find html attributes Vick Sa http://codeissue.com/profile.php?p=2175 2013-04-12T14:12:03Z 2011-08-10T13:42:06Z I have html tag like this: <a href="category/" name="lnkCategory" target="_blank">Click here</a> I want to get name/value pairs of SPECIFIED attributes like href="category/" and name="lnkCategory" but NOT target="_blank". How do I just get the specific attributes using regular expression? http://codeissue.com/issue.php?i=i85154340771031 Usage of jquery in eclipse Yogaraj Khanal http://codeissue.com/profile.php?p=2000 2013-03-28T09:55:39Z 2013-03-28T08:13:59Z i know how to find an element using jquery with the help of firequery. But I am unable to include that particular jquery in java program. Is there any need of adding jar files to the java project in eclipse? Or else please help me to make use of jquery in eclipse. http://codeissue.com/issue.php?i=i751108847b0873 jquery css background changer SBajra http://codeissue.com/profile.php?p=1978 2013-03-28T08:36:49Z 2013-02-04T23:19:19Z ================================================================================= html and jquery ================================================================================= <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>CMS</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="description" content="" /> <meta name="keywords" content="" /> <meta name="robots" content="index,follow" /> <link rel="stylesheet" type="text/css" href="css/main.css" /> <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <script src="http://code.jquery.com/jquery-migrate-1.1.0.min.js"></script> <script> $(document).ready(function(){ $("#button").click(function(){ $("body").css("background-image","url('../images/main_bg_landscape_2.jpg')"); }); }); </script> </head> <body> <div id="button"> </div> </body> </html> ============================================================================ CSS ============================================================================ body { background-image:url('../images/main_bg_landscape.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-position: center top; background-size: 100% 100%; /*This bit will make the image fit the whole page*/ } #button { background-image:url('../images/light-switch-on.jpg'); width: 18px; height: 24px; } ================================================================================ ================================================================================ http://codeissue.com/issue.php?i=i24dfacd009a7e4 Updating dataGridView from different thread than UI thread Lalita P http://codeissue.com/profile.php?p=2168 2013-03-18T10:08:59Z 2011-06-16T23:41:52Z How do i update dataGridView from seperate thread than UI thread. I get runtime exception when i update datagridview from seperate thread. Any suggestion .. http://codeissue.com/issue.php?i=i15141cf47e603a How to get value in label control when user change the value in datagrid for .net 1.1 and vb.net It Pro http://codeissue.com/profile.php?p=2060 2013-03-15T11:24:00Z 2013-03-14T09:23:19Z I have one editable datagrid control called "dgDist" which has 2 column name and amount. There is one one label control called "lblTotal" (outside the data grid). For example NAME AMOUNT ---- ----- TOM 0.00 POM 0.00 PAT 0.00 Total = <lblTotal> Whenever user change the amount in the datagrid it should shows the total in that label control. For example if user enter TOM 500.00 POM 200.00 PAT 0.00 Then Total: 700 Please let me know how can I do this. This is for .NET framework 1.1 and in vb.net. If javascript needed also please let me know the code. Thanks for your help. http://codeissue.com/issue.php?i=i84f2aeb62f3caa How do I change the default port of Oracle database 10g XE edtion MalayRanjan Hota http://codeissue.com/profile.php?p=2166 2013-02-25T07:02:04Z 2012-02-02T15:00:34Z Hi, I have different databases and Web servers running in my local machine. I often get port conflicts because of Oracle XE will claim the default port 8080. I search in net how do avoid port conflicts by changing the default port of Oracle 10g database XE edition but no luck.Any helping hands is appreciated. Thanks, MM http://codeissue.com/issue.php?i=i251078c301c6ba power operation Cs Ss http://codeissue.com/profile.php?p=2162 2013-02-17T05:28:34Z 2013-01-29T03:45:36Z v = Convert.ToDouble (txtencrypt.Text); t = Math.Pow(v, d); MessageBox.Show(Convert.ToString(t)); MessageBox.Show(""+t.ToString()); MessageBox.Show("" + Convert.ToDecimal(n)); msg = Convert.ToInt16(Math.Pow(v,d) % Convert.ToDouble(n)); txtdecrypt.Text = Convert.ToString(msg); Here i'm facing the problem is whenever i'm doing power operation i'm getting slightly deviated result from my actual result. please help me to solve the problem. http://codeissue.com/issue.php?i=i24dd7c2da0e61c Problem using Encoding.UTF8.GetString() and Encoding.UTF8.GetBytes() Sagnik Majumder http://codeissue.com/profile.php?p=2157 2013-01-03T02:49:17Z 2011-05-21T09:49:14Z I get binary data from my encryption class. I tried to convert my binary data to string using Encoding.UTF8.GetString() so that I can store in string field in database. Later I read my string from database, convert string to binary byte using Encoding.UTF8.GetBytes() and try to decrypt the binary byte. But this is not working. Now my problem is when I convert my binary bytes to string using Encoding.UTF8.GetString() and convert back string to bytes using Encoding.UTF8.GetBytes(), the results are not same. I am not sure if I am doing anything wrong here. I am trying to convert my binary bytes to string so that I can store as string? http://codeissue.com/issue.php?i=i34df5fb800dc0d RegAsm : warning RA0000 : No types were registered Atul Rungta http://codeissue.com/profile.php?p=2151 2012-12-06T01:36:48Z 2011-06-13T07:58:56Z I am trying to register my .NET assembly so that it can used by COM component like from ASP or VB. But when I executed Regasm.exe, I get this error message "RegAsm : warning RA0000 : No types were registered". Can any one please let me know what this means? http://codeissue.com/issue.php?i=i1050abe352846c8 Selenium Mink Jenner http://codeissue.com/profile.php?p=2148 2012-11-26T11:24:59Z 2012-11-20T15:08:50Z I have written a Selenium test case using the Selenium web driver.The test is running but it is skipping all the test cases, and also the browser is not initiating . Please help http://codeissue.com/issue.php?i=i85092bc4a36190 Enforce Perforce job linking during submission to changelist SBajra http://codeissue.com/profile.php?p=1978 2012-11-01T14:28:24Z 2012-11-01T14:15:38Z We are using Perforce for our source control. Now we wanted to enforce linking Perforce job during submission. Is there any default way to enforce "link jobs to changelist" in Perforce? Actually we wanted every check-ins to be associated with Perforce Job. http://codeissue.com/issue.php?i=i24e60ee0f57e94 Split alphabet character and number from alphanumeric string C# RaKumar http://codeissue.com/profile.php?p=1980 2012-10-25T10:48:03Z 2011-09-02T10:54:07Z I have a alphanumeric string which starts with Alphabet and ends with number. I need to separate/split this string into alphabet and number. I will always have my string starting with alphabet and ending with number. There is not mix of alphabet and number. For example: CODE1234, MD2233, CA33 etc. I need to split to "CODE" and "1234". I need to separate starting alphabet part and number part. First I thought it will be easy to split this pattern of string but now I am stuck. Please help.