CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Suzi167

Page 1 of 7 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    3
    Views
    2,644

    Re: Crystal Report app deployment

    I deployed it the same way with the publish but for the reports to work you must have run a Crystal run time on the machine where you installed your application.

    Which run time did you install?
    ...
  2. Replies
    3
    Views
    2,644

    Crystal Report app deployment

    Hello,

    I created a VS 2008 C# MVC application which uses CrystalReportViewer to display a report. All the .dll files I used are either version 12.0.2000 or 12.0.1100.

    The application works well...
  3. Replies
    1
    Views
    1,568

    Re: IE and international characters

    I found a solution and thought I will post it here:

    public ActionResult GetFile(byte[] value, string fileName)
    {
    string fileExtension = Path.GetExtension(fileName);
    ...
  4. Replies
    1
    Views
    1,568

    IE and international characters

    Hello,

    I am writing an application where the user needs to be able to download a file.
    So I have the following code which does the downloading:





    public ActionResult GetFile(byte[]...
  5. fileContentResult and International characters

    Hello,

    I am using a fileContentResult to render a file to the browser. It works well except that it throws an exception when the fileName contains international characters.
    I remember reading...
  6. Convert from UTC Time zone to Local TIme Zone

    Hello,

    I am working on a web application which stores all Dates in GMT time zone.

    When I display the dates to the user I need to display them in their local time zone.

    So for example in my...
  7. Replies
    1
    Views
    1,456

    C# and resource files

    Hello,

    I have an application which we want to be able to localize relatively easy. That is why I am using resouce files.

    I am however experiencing the following issue:

    The name of the...
  8. Replies
    4
    Views
    1,777

    Re: Input Box and enter

    Thanks very much for the replies. I am sorry - I posted this last night and I must have misread it.
    I tried the things u suggested and it works fine except that in addition to the text box I also...
  9. Replies
    4
    Views
    1,777

    Input Box and enter

    Hello ,

    I have a bunch of HTML input text boxes(spread over 2 pages) and I need to do the following two things:

    1) On the first page I have an input box and when the user enters the data and...
  10. Thread: C# 3.0 Lambdas

    by Suzi167
    Replies
    3
    Views
    849

    Re: C# 3.0 Lambdas

    I found an answer even though it's not a one-line solution it's a good one that works.




    EnvironmentalMonitoringModelUnitOfWork uow = DataService.Context.CreateUnitOfWork();
    //select all...
  11. Thread: C# 3.0 Lambdas

    by Suzi167
    Replies
    3
    Views
    849

    Re: C# 3.0 Lambdas

    Oh... :) thanks for the correction... but unfortunately there is something else wrong with the query I have.
    Let me make it a bit more general

    What is the LINQ expression to remove certain...
  12. Thread: C# 3.0 Lambdas

    by Suzi167
    Replies
    3
    Views
    849

    C# 3.0 Lambdas

    Hello,

    I need to write a LINQ expression to remove all the entries from my VqEmSampleSchedules table which have their VqEmTestByLocationId == to the id I have passed to that function.
    I have all...
  13. Replies
    2
    Views
    648

    Re: tag

    I've tried putting <option value="<%=location.id%>"> but it does not like it
  14. Replies
    2
    Views
    648

    tag

    Hello,

    I need to be able to specify a value in my <option> tag inside of a <select> tag but the value is actually the id of a field.
    Here is the code:


    <select id="cmbLocation">
    ...
  15. Replies
    0
    Views
    947

    the new MVC and IIS 6

    Hello,

    I am trying out to develop a prototype of a product using the new MVC framework in C#.
    So I created the project and all the basic Views and Controllers are created by the environment....
  16. Replies
    2
    Views
    687

    Re: config fiels in .Net

    I just wanna tell u that u saved my day....thank u like 1000 times.
    I took your idea and implemented it a bit differently.

    I created a static class in the core with all the properties that I...
  17. Replies
    2
    Views
    687

    config fiels in .Net

    Hello All I am developing an application in C# and I have my project split the following way :

    1. Windows project which contains all of the UI stuff
    2. Core project which contains the core...
  18. Replies
    2
    Views
    848

    Re: Managing Windows Services from code

    Never Mind - found a great article on it.
    For those of you who may stumble upon the same issue visit the following link:


    http://www.codeproject.com/KB/cs/winservicemanage.aspx


    Susan
  19. Replies
    2
    Views
    848

    Managing Windows Services from code

    Hello ,

    I need to check if a Windows Service is running and if so then Stop it

    How can I do that from Code in C#.

    Thanks

    Susan
  20. Thread: Multithreading

    by Suzi167
    Replies
    4
    Views
    908

    Re: Multithreading

    Thanks to all of you who replied.
    I just wanted to say that I resolved the issue.

    After looking at the code I saw that the threads were running well indeed ( based on the post that yraen made I...
  21. Thread: Multithreading

    by Suzi167
    Replies
    4
    Views
    908

    Re: Multithreading

    The _controller.StartProcessing basically calls another object called Watcher.StartProcessing,etc. which monitors a folder for dropped files in it.
  22. Thread: Multithreading

    by Suzi167
    Replies
    4
    Views
    908

    Multithreading

    Hello All gurus,

    I have a multithreading question.

    I am writing a service which basically is going to be a listener which monitors a folder and when files are dropped in it...etc,etc..... in...
  23. Replies
    3
    Views
    8,182

    Re: WindowsIdentity in C#

    Thanks so much for the fast reply. It has been very helpful.
    I implemented the suggestion and my solution looks much cleaner.

    Regards,

    Susan
  24. Replies
    3
    Views
    8,182

    WindowsIdentity in C#

    Hello Everyone,

    I have a question regarding windows Identity.

    I am using the following code to get the user name of the user which is currently logged in the system




    string...
  25. Replies
    1
    Views
    1,038

    Connection String

    Hello Everyone,

    I have a C# application and I need to connect to an oracle database sitting on a different computer.
    The computer name is test and the database name is UDA.
    I have the following...
Results 1 to 25 of 173
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured