Click here to Skip to main content
       

.NET Framework

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
GeneralRe: How to know .NET Framework, deeply?memberisenthil2 Oct '12 - 6:27 
i will also add MSDN to the above list ...
Regards,
Senthil Kumar

GeneralRe: How to know .NET Framework, deeply?memberatoi_powered2 Oct '12 - 8:23 
Thank you so much. I got what I should look for. Smile | :)
QuestionCrytal reportsmemberyaswanth0011 Oct '12 - 1:27 
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
AnswerRe: Crytal reportsprotectorPete O'Hanlon1 Oct '12 - 1:46 
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.

*pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

"Mind bleach! Send me mind bleach!" - Nagy Vilmos

CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

GeneralRe: Crytal reportsmemberyaswanth0011 Oct '12 - 7:04 
Thank you very much
GeneralRe: Crytal reportsprotectorPete O'Hanlon1 Oct '12 - 9:42 
Not a problem. I'm glad I could help.

*pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

"Mind bleach! Send me mind bleach!" - Nagy Vilmos

CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

QuestionAndroid applicationsmemberMember 940514026 Sep '12 - 6:24 
how to proceed with android application development.Is there any app which is not existing in android and research is going on.
AnswerRe: Android applicationsmvpRichard MacCutchan26 Sep '12 - 6:32 
See here[^] and here[^].
One of these days I'm going to think of a really clever signature.

AnswerRe: Android applicationsmvpAbhinav S1 Oct '12 - 1:49 
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.
WP7.5 Apps - XKCD | Calvin | SMBC | Sound Meter | Speed Dial

QuestionJagged Array as Return Type from Function - Syntax Driving me BonkersmemberMike-MadBadger25 Sep '12 - 6:50 
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 General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 23 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid