April 26th, 2010 07:57 AM
:)
Are you using Visual Studio or just the .NET SDK? Whatever you are using the error will point you to the specific line of code that is causing the problem? Have you tried looking at that?
If...
April 25th, 2010 03:14 PM
Hi,
You can pass any parameters you want to your controller action. You can do that through the model or in the parameter list. Have you tried any of these options?
April 25th, 2010 02:46 PM
Hi DeepT.
Toraj58 has made a good suggestion. I would like to suggest an alternative approach. The alternative I would recommend is developing a Silverlight 3 application. If you users are willing...
April 22nd, 2010 10:00 AM
Ok. Basically you can use ASP.NET data source controls that minimise the amount of code you would write. The DropDownList is a data-bound control so you should be able to point it to the datasource...
April 21st, 2010 03:44 AM
What do you mean by a 'reader'? Can you be more precise?
April 19th, 2010 09:40 AM
Hi there,
Is this a homework or coursework assignment? If that is the case you should be able to at 75% just by going back to the notes/books.
If this is a professional/commercial project you...
April 16th, 2010 03:22 AM
Good point. In any case you wouldn't be able to put any old GUID there. It would have to match the one in the library. Having said it you could always inspect the library and get the GUID from there....
April 15th, 2010 11:16 AM
Relax...it's called the learning curve...:) Things tend to be a bit more involved when you move to a professional environment. How much experience in Java do you have? I've not done any VB.NET so...
April 15th, 2010 10:19 AM
Hey heavyone,
Given what you already know I don't see any reason why you can't proficient in C# in no time. You already have a good grounding in object oriented programming (my assumption based on...
April 15th, 2010 06:48 AM
Hi.
The CLSID is a GUID and there are GUID generators on the web. But for it to be useful it would need to be embedded in the library (i.e. you would need the source code)...Why do you want to...
April 15th, 2010 03:49 AM
Hi there,
You could ask the VB guys as many of them would be used to consuming COM components from VB and might be able to give you the right pointers. From my understanding that error code...
April 15th, 2010 03:30 AM
Hi.
Have you tried changing the content type? I don't think you should change the program. You need to know and understand why it is not working for this particular user. Do you have access to the...
April 14th, 2010 07:20 PM
Hi there.
If you are interested in learning ASP.NET I would suggest ignoring that project you got (by the way..where did you get it from?) and learn from the samples on this sitem ASP.NET...
April 14th, 2010 07:15 PM
Hi,
As I thought you have already tried a number of options. That wasn't obvious from your original post. In the programming world a 'hack' is also used to refer to a solution that is less than...
April 14th, 2010 04:14 AM
Hi,
There could be a number of reasons why things aren't working for you. I must commend you on your bold attempt to 'hack' it. Things don't work like that. Particularly if this is a line of...
April 12th, 2010 08:00 AM
Hi. I've got a few questions...
Why is there are need to do such a migration?
Are there any clients that currently depend on the COM component? Or are you developing new clients that will...
April 11th, 2010 02:31 PM
I might be completely wrong about this (in a way I hope I am...) but try replacing this
if (bolFlag == true)
{
this.txtEmployeeID.Text = convert.tostring(FM.PropEmployeeID);
...
April 11th, 2010 02:21 PM
Hi there.
You could a two dimensional array of integers. You don't have to index with a 'char'. You can map each index to a character. For example 0 -> 'A' and so on. If you want you can define...