|
Hi Experts,
I am new to LMS (Leaning Management System).
I need to know what is LMS and what is Scorm 2004 ?
Is they are working together ?
Please help experts, I am confused!
Sample code would be greatly appreciated!
Thanks.
Vijay Jadhav.
|
|
|
|
|
It's amusing to me that you appear to be getting paid to work on a web based learning package, and yet seem to know nothing about learning, or research.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Christian,
Thanks for your valuable suggestion. Keep it with you.
But, one thing I need to clear my friend. Here, I am the BOSS, I am the owner. So, nobody is going to pay me.
Hi Experts,
If anybody knows, please help.
Thanks.
Vijay Jadhav.
|
|
|
|
|
Vijay Jadhav, India. wrote: Here, I am the BOSS, I am the owner.
Applying for jobs on rentacoder, may make you the 'owner', but not of anything worth owning. Certainly if you're the 'owner', you should consider only taking jobs where you have the at least a hint of a clue what they involve.
Vijay Jadhav, India. wrote: If anybody knows, please help.
I have never heard of these acronyms and I got a fair idea of what you want to know by reading a few google articles.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Thanks for suggestions.
Vijay Jadhav.
|
|
|
|
|
How much time could you have saved by doing this[^]?
|
|
|
|
|
Hi. Not getting you!
Do you have solution ?
Vijay Jadhav.
|
|
|
|
|
Vijay Jadhav, India. wrote: Hi. Not getting you!
I gave you a link to some useful information; did you use it?
|
|
|
|
|
Yes, but not find any useful details using .Net.
I need to use ASP.NET to implement whole scenario.
Any updates from your side ?
Vijay Jadhav.
|
|
|
|
|
Vijay Jadhav, India. wrote: I need to use ASP.NET to implement whole scenario.
Well it looks like you will need to learn ASP.NET also. Perhaps you should review the tasks you have been set and decide whether you have the skills required to complete them.
|
|
|
|
|
Thanks.
I am well familiar with ASP.NET.
I am totally new to SCORM concept.
No problem mate, I will handle it and get back to you with details.
Thanks for your time.
Vijay Jadhav.
|
|
|
|
|
Hi! I m a learner. A large number of CP article examples & demos are console based, how to simply convert console to windows form app using VS. Thanx.
|
|
|
|
|
Well, there is no simple way. I would suggest if you're a beginner, that looking at console apps is the way to go. Learn C# before you learn about events, controls, message pumps, etc.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Thanx for reply. Actually some learners start "C#" with VS just as a web learner would start with FrontPage instead of learning abc of "HTML" first. Now, how far can VS assist resolve such issues. Thanx again
|
|
|
|
|
alrsds wrote: Actually some learners start "C#" with VS just as a web learner would start with FrontPage instead of learning abc of "HTML" first.
Well, you need VS to write apps. But, anyone who cares about being good, is going to learn the language before the frameworks.
I answered you. You can't magically turn a console app into a forms app. You can only do that as a manual process, and how much work it is, depends on the app. But, if you have a console app AND it's better to learn C# before winforms, why would you want to move it to winforms anyhow ?
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Thanx. I have replied first part of discussion in another thread above. Regarding why instrested, this far as a learner, to be fair, I think forms more frequent in real world examples so I prefer to work with and also adapted some available here for personal use & community welfare. Regards
|
|
|
|
|
alrsds wrote: to be fair, I think forms more frequent in real world examples
Sure, forms are used a lot. Full English sentences are used more often that phrases like 'see spot run', but that doesn't mean that a 6 year old starts to learn to read by reading Shakespeare.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Christian Graus wrote: Well, you need VS to write apps.
::cough:: No you don't. ::cough::
|
|
|
|
|
:: :: Don't you need it? :: ::
and why?
|
|
|
|
|
alrsds wrote: Don't you need it?
and why?
Visual Studio is merely an integrated tool that allows you to edit and compile a program without having to learn the individual commands. However, you can create a source file from any editor and compile it with the csc command.
But, using VS makes it much easier.
|
|
|
|
|
public static bool UpdateVisitor(string id,string n, string c, decimal p)
{
drow = ds.Tables[0].Rows.Add();
drow[0] = id;
drow[1] = n;
drow[2] = c;
drow[3] = p;
vda.UpdateCommand = vcb.GetUpdateCommand();
int res = vda.Update(ds.Tables[0]);
if (res > 0)
{
System.Windows.Forms.MessageBox.Show("Visitor Details Updated");
return true;
}
else
return false;
}
i am new. pls tell me what is wrong. i want to update the data ok.......... thanks in advance
modified on Friday, September 25, 2009 1:27 AM
|
|
|
|
|
New to the site, or new to C# ? If you're new to C#, then why are you writing this code ? I assume you're writing for learning purposes, there is no way you're writing production quality code. So, choose a simpler task, and learn your way up to what ever task it is you're trying to learn how to do. And, when you ask questions, don't say 'what is wrong'. Tell us what you want the code to do, what it does instead, what your efforts at debugging have told you already, etc.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Are u getting any error or what? Whats ur problem?
I hav few more Qs.
1) Where r u defining ur dataset "ds"?
2) Why u want ur return type Static?
|
|
|
|
|
I love it when they ask dumb questions, and when you try to help, they never answer.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Its their loss. 
|
|
|
|