Click here to Skip to main content
15,898,794 members
Home / Discussions / C#
   

C#

 
GeneralRe: Winform support in Windows service Pin
Member 1260803930-Dec-21 1:28
Member 1260803930-Dec-21 1:28 
GeneralRe: Winform support in Windows service Pin
OriginalGriff30-Dec-21 2:08
mveOriginalGriff30-Dec-21 2:08 
AnswerRe: Winform support in Windows service Pin
#realJSOP30-Dec-21 1:20
professional#realJSOP30-Dec-21 1:20 
QuestionDynamically change int from a string Pin
Matte Matik29-Dec-21 12:02
Matte Matik29-Dec-21 12:02 
AnswerRe: Dynamically change int from a string Pin
Dave Kreskowiak29-Dec-21 12:36
mveDave Kreskowiak29-Dec-21 12:36 
AnswerRe: Dynamically change int from a string Pin
OriginalGriff29-Dec-21 21:53
mveOriginalGriff29-Dec-21 21:53 
QuestionC# Entity Framework : how to generate custom automatic numbers Pin
Fidele Okito27-Dec-21 4:50
Fidele Okito27-Dec-21 4:50 
AnswerRe: C# Entity Framework : how to generate custom automatic numbers Pin
Gerry Schmitz27-Dec-21 5:16
mveGerry Schmitz27-Dec-21 5:16 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
Fidele Okito27-Dec-21 5:32
Fidele Okito27-Dec-21 5:32 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
Gerry Schmitz27-Dec-21 6:45
mveGerry Schmitz27-Dec-21 6:45 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
Fidele Okito27-Dec-21 7:55
Fidele Okito27-Dec-21 7:55 
AnswerRe: C# Entity Framework : how to generate custom automatic numbers Pin
#realJSOP28-Dec-21 0:24
professional#realJSOP28-Dec-21 0:24 
AnswerRe: C# Entity Framework : how to generate custom automatic numbers Pin
jschell29-Dec-21 7:17
jschell29-Dec-21 7:17 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
Gerry Schmitz29-Dec-21 15:22
mveGerry Schmitz29-Dec-21 15:22 
JokeRe: C# Entity Framework : how to generate custom automatic numbers Pin
Peter_in_278029-Dec-21 15:32
professionalPeter_in_278029-Dec-21 15:32 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
Gerry Schmitz29-Dec-21 15:54
mveGerry Schmitz29-Dec-21 15:54 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
jschell30-Dec-21 7:31
jschell30-Dec-21 7:31 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
Gerry Schmitz30-Dec-21 9:23
mveGerry Schmitz30-Dec-21 9:23 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
jschell23-Jan-22 7:01
jschell23-Jan-22 7:01 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
Fidele Okito30-Dec-21 3:14
Fidele Okito30-Dec-21 3:14 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
jschell30-Dec-21 7:26
jschell30-Dec-21 7:26 
GeneralRe: C# Entity Framework : how to generate custom automatic numbers Pin
Fidele Okito30-Dec-21 8:57
Fidele Okito30-Dec-21 8:57 
QuestionFull path Crystal report on client server in c# Pin
remiki26-Dec-21 22:54
remiki26-Dec-21 22:54 
AnswerRe: Full path Crystal report on client server in c# Pin
OriginalGriff26-Dec-21 23:22
mveOriginalGriff26-Dec-21 23:22 
Crystal Reports runs on the server, as does all your C# code: it has no direct access to the client filesystem at all - for the obvious security reasons - and cannot in any way access client folders.

If you are trying to access report files which are located on the server, then they must be in a folder that is available to the process running your code - which for a web-based app is not your user, it's a special user that runs IIS for example.
Additionally, the EXE file current folder is probably located (in production at least) in the Program Files folder, which is write protected by default, again for security - so it's very unlikely that a report file will be of any use unless it is store in a "sensible" location.

Start by working out what generates the report, and where exactly it stores it relative to the code that tries to read it. Then you can start working on where it should be stored so that it is accessible to client and server.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!

AnswerRe: Full path Crystal report on client server in c# Pin
remiki26-Dec-21 23:30
remiki26-Dec-21 23:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.