.NET Framework
|
|
 |

|
C, C++, VB, .NET (pre SP1) or one of many other languages.
|
|
|
|

|
caradri wrote: what people use to programm at 98?
Dunno, I do not know people who still support the platform. It's unreliable (pre-NT) and no new security-updates are provided by Microsoft.
Why Win98? Wouldn't Ubuntu with Mono be a better choice? Means you could use anything in .NET 4.
|
|
|
|

|
Hey guys,
Im fairly new to this so please bear with...
I'm using the tutorial @ http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/index.html
to allow the user to select dates from a calendar
however I can't seem to get it working could someone please advise if I am going about this the wrong way...
'jquery.datePicker.js & datePicker.css' can be downloaded at near the top of the page on...
http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/index.html
1)copy the code in the '•jquery.datePicker.js ' inside my <script> tags in my view
2) copy the datePicker.css code into my css file
3) paste the following into the top of my view page:
<!-- jQuery -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
-->
<script type="text/javascript" src="scripts/date.js"></script>
-->
-->
<script type="text/javascript" src="scripts/jquery.datePicker.js"></script>
This does not work...iv tried doing the first demo and replacting the .js data inside my <script>tags wit $(function()
{
$('.date-pick').datePicker();
});
and then adding the following to .css
a.dp-choose-date {
float: left;
width: 16px;
height: 16px;
padding: 0;
margin: 5px 3px 0;
display: block;
text-indent: -2000px;
overflow: hidden;
background: url(calendar.png) no-repeat;
}
a.dp-choose-date.dp-disabled {
background-position: 0 -20px;
cursor: default;
}
input.dp-applied {
width: 140px;
float: left;
}
could someone please tell me what I am doing wrong?
Thanks
J
|
|
|
|

|
You do realise that this is the .NET forum and not the JavaScript forum don't you?
modified 3 Dec '12 - 13:24.
|
|
|
|

|
I want to allow the class to create only one object instance.
I want to make visible the class ouside the assembly but restrict to only one assembly.
What needs to do?
Please suggest me.
|
|
|
|
|

|
What does this have to do with OOPS concepts? What you are describing is such a basic request that it's part of the framework; we call them "static classes".public static class MySingleObjectClass
{
public static void PerformSomeAction()
{
}
}
|
|
|
|

|
If we create static class , we cannot able to create instance. but ,my query is that instance should be created only one time and restrict to more than one.
|
|
|
|

|
9500394002 wrote: If we create static class , we cannot able to create instance.
There's one instance by definition, so no use in creating it.
9500394002 wrote: but ,my query is that instance should be created only one time and restrict to more than one.
That's exactly what the static class was intended for.
|
|
|
|

|
If you want to restrict the class so that it can only be seen by one particular external assembly, you use internal to limit the scope to the current assembly, and then you implement InternalsVisibleTo[^] to link this to the specific assembly.
|
|
|
|
 |
|
|
General
News
Suggestion
Question
Bug
Answer
Joke
Rant
Admin