.NET Framework
|
|
 |

|
i will also add MSDN to the above list ...
Regards,
Senthil Kumar
|
|
|
|

|
Thank you so much. I got what I should look for.
|
|
|
|

|
Warning 1 The referenced assembly "CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, processorArchitecture=MSIL" could not be resolved because it has a dependency on "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which is not in the currently targeted framework ".NETFramework,Version=v4.0,Profile=Client". Please remove references to assemblies not in the targeted framework or consider retargeting your project. StudentManagementSystem
i am getting this msg when i am compiling plz help
|
|
|
|

|
You have targetted the Client Profile in your project (take a look in the project properties). This doesn't include the web assemblies. You need to change your profile to the full .NET 4 profile to get access to System.Web.
|
|
|
|
|

|
Not a problem. I'm glad I could help.
|
|
|
|

|
how to proceed with android application development.Is there any app which is not existing in android and research is going on.
|
|
|
|

|
See here[^] and here[^].
One of these days I'm going to think of a really clever signature.
|
|
|
|

|
Member 9405140 wrote: there any app which is not existing in android and research is going on.
Well...this is a .Net forum, so No.
|
|
|
|

|
For love nor money I cannot get the syntax right.
I want to return 3 x 2D arrays from a function but can't wrap my head around it - I suspect I have just failed to grasp some fundamental aspect of jagged arrays!
Public Function SVD() As Double(,)(,)(,)
Dim arS(,) As Double
Dim arU(,) As Double
Dim arV(,) As Double
...Fill the Arrays...
Dim arSVD(,)(,)(,) As Double
arSVD(0) = arS
arSVD(1) = arU
arSVD(2) = arV
Return arSVD
End Function
If I have it that way the error is on arSVD(n) and says 'Number of indices is less than the number of dimensions...'
If I change the return type and arSVD to Double()()() then the error is on the last arS and says 'Value of type 2D array cannot be converted to 1D array...'
If I change it to arSVD(0,0) for example the error is on the last arS and says 'Value of type 2D array cannot be converted to type 2D array of 2D array...'
Bash. Head. Brick. Wall.
Any help very gratefully received.
Mike
|
|
|
|
 |
|
|
General
News
Suggestion
Question
Bug
Answer
Joke
Rant
Admin