http://codeissue.com/issuesRecent Issues - CodeIssue.com2013-06-19T03:33:48Zhttp://codeissue.com/issue.php?i=i951a7ef99d94b0Connexion CDE_OracleYogaraj Khanalhttp://codeissue.com/profile.php?p=20002013-05-31T08:27:25Z2013-05-30T20:32:25ZDear 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 advancehttp://codeissue.com/issue.php?i=i84e31c5ce48988How can I use jQuery in EclipseYogaraj Khanalhttp://codeissue.com/profile.php?p=20002013-05-23T06:53:36Z2011-07-28T16:25:50ZHi,
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,
Martinhttp://codeissue.com/issue.php?i=i75163c250172fdWe DevelopmentRd Nardhttp://codeissue.com/profile.php?p=21792013-05-11T09:35:30Z2013-04-09T03:25:04ZI created Dropdown with the Select and option ,I want dropdown should get closed on hover of mousehttp://codeissue.com/issue.php?i=i74e42c2ee8290aRegular expression to find html attributesVick Sahttp://codeissue.com/profile.php?p=21752013-04-12T14:12:03Z2011-08-10T13:42:06ZI 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=i85154340771031Usage of jquery in eclipseYogaraj Khanalhttp://codeissue.com/profile.php?p=20002013-03-28T09:55:39Z2013-03-28T08:13:59Zi 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=i751108847b0873jquery css background changerSBajrahttp://codeissue.com/profile.php?p=19782013-03-28T08:36:49Z2013-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=i24dfacd009a7e4Updating dataGridView from different thread than UI threadLalita Phttp://codeissue.com/profile.php?p=21682013-03-18T10:08:59Z2011-06-16T23:41:52ZHow 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=i15141cf47e603aHow to get value in label control when user change the value in datagrid for .net 1.1 and vb.netIt Prohttp://codeissue.com/profile.php?p=20602013-03-15T11:24:00Z2013-03-14T09:23:19ZI 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=i84f2aeb62f3caaHow do I change the default port of Oracle database 10g XE edtionMalayRanjan Hotahttp://codeissue.com/profile.php?p=21662013-02-25T07:02:04Z2012-02-02T15:00:34ZHi,
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,
MMhttp://codeissue.com/issue.php?i=i251078c301c6bapower operationCs Sshttp://codeissue.com/profile.php?p=21622013-02-17T05:28:34Z2013-01-29T03:45:36Zv = 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=i24dd7c2da0e61cProblem using Encoding.UTF8.GetString() and Encoding.UTF8.GetBytes()Sagnik Majumderhttp://codeissue.com/profile.php?p=21572013-01-03T02:49:17Z2011-05-21T09:49:14ZI 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=i34df5fb800dc0dRegAsm : warning RA0000 : No types were registeredAtul Rungtahttp://codeissue.com/profile.php?p=21512012-12-06T01:36:48Z2011-06-13T07:58:56ZI 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=i1050abe352846c8SeleniumMink Jennerhttp://codeissue.com/profile.php?p=21482012-11-26T11:24:59Z2012-11-20T15:08:50ZI 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 helphttp://codeissue.com/issue.php?i=i85092bc4a36190Enforce Perforce job linking during submission to changelistSBajrahttp://codeissue.com/profile.php?p=19782012-11-01T14:28:24Z2012-11-01T14:15:38ZWe 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=i24e60ee0f57e94Split alphabet character and number from alphanumeric string C#RaKumarhttp://codeissue.com/profile.php?p=19802012-10-25T10:48:03Z2011-09-02T10:54:07ZI 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.