User Profile

Collapse

Profile Sidebar

Collapse
Nilam2477
Nilam2477
Last Activity: Aug 21 '10, 07:20 AM
Joined: Feb 1 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Need help to decide whether to go for ASP.Net Website or PHP

    Hello
    I'm new to Web based technology and i have to decide whether to implement using ASP.net or PHP
    Here is my requirement
    There will a be a Web based software which would be sold via website download.
    There were 2 options
    1. There will be one Web Server controlled by one person where you have the link to purchase the software. When user purchases the software, in the same Web Server virtual directory will be created...
    See more | Go to post

  • Nilam2477
    started a topic smart card providers

    smart card providers

    I need to develop an application which will read and write data to a smart card. I also need to decide which hardware i need to use. Can you please give names of providers from whom i can buy the hardware (smart card & smart card reader/writer device)
    See more | Go to post

  • Sql Express installed using Package deployment does not provide change 'sa' password

    I want to deploy my application which requires .Net framework, SQL Express as prerequisites. So i created a setup project in VS2008 and selected .Net framework and SQL Server 2005 Express.
    Now while installing my application at client's site, it first installs .Net framework followed by SQL Express 2005. But while installing SQL Express it does not prompt for the user to set the password for 'sa' user. There is no dialog displayed for user...
    See more | Go to post

  • How to Lock a database table from being accessed by multiple clients?

    I have a application wherein database is located on server and there are client computer which access the central database server. How do i handle a situation when more than one client tries to access the same data table on the server. I'm using SQL Server 2005. It it internally handled in SQL 2005? or i need to handle in my C# code?
    Please help
    See more | Go to post

  • C# .Net Windows application or WebSite application?

    My requirement is to develop an application which can be run from central networked computer.
    My idea is to install SQL database on central computer(server ) i.e to have database located on the server, and install C# windows application on one or more client machines. All the client machines will store/retrieve database from the server.
    Is this option better or creating a WebSite and installing this only on central server. All client...
    See more | Go to post

  • Nilam2477
    started a topic Licensing for windows application

    Licensing for windows application

    I have developed a product which i want to distribute.
    I want users of the product to register before using the product. What are steps required to provide licensing? Pls help
    See more | Go to post

  • Nilam2477
    started a topic How to draw graph in C#

    How to draw graph in C#

    I want to draw a graph similar to microsoft project plan which shows tasks (start & completion date for each task) and dependency like if start of any task is dependent on completion of other tasks.
    To start with i need some guidance. I searched in google and i found ZedGraph but it does not solve my requirement. Please help
    See more | Go to post

  • Type does not contain a definition for identifier error

    I have a solution containing about 5 projects. One of these is "CommonClas s" witch contains a class User with a public property ReportName. In my web site i check this property on an user object (if (usr.ReportName ) ...) Intellisens works on the property, and when i right click and "go to definition" i go to the correct file and definiton. However when i build i get the following error:

    'Project.Common Class.User'...
    See more | Go to post

  • Nilam2477
    replied to NCover for ASP.net Web page?
    NUnit & NCover tools download

    I need help for downloading NUnit & NCover tools. I need to know the site where i can download.
    Thanks in advance
    See more | Go to post

    Leave a comment:


  • Nilam2477
    started a topic NCover for ASP.net Web page?

    NCover for ASP.net Web page?

    I need to do the code coverage for my ASP.Net Web page application. I know NCover tool can be used for Windows application but i'm not sure how to use it for Web pages? bec in NCoverExplorer we specify .exe while running NCover. so how do we specify Web pages in NCoverExplorer
    See more | Go to post

  • Nilam2477
    started a topic Frames or Master pages

    Frames or Master pages

    I have Web application. In most of the forms Frames are used. We are planning to use Master pages instead of frames. Could you please let me know what are the advantages of using Master pages over frames?
    See more | Go to post

  • Nilam2477
    started a topic Binding GridView control with datasource

    Binding GridView control with datasource

    I have Grid view control and this control is associated with SqlDataSource. Is it advicable to always associate a control with data source. What are the disadvantages doing so?
    I'm currently changing the design and implementing MVC pattern.
    Thanks in advance
    See more | Go to post

  • Nilam2477
    started a topic ASP.net Web page refactoring

    ASP.net Web page refactoring

    I have a ASP.net Web application. I have master pages. I have 5 web forms with same controls. At run time based on user selection each form is loaded.
    I have one Web form (city.aspx) with combobox and grid control
    i have 5 other web forms (state.aspx) with same controls i.e, combobox and grid control.
    When the user selects City, city.aspx form is loaded. similarly when user selects State, state.aspx form is loaded.
    ...
    See more | Go to post

  • Nilam2477
    started a topic SHGetFileInfo does not work for large icons
    in .NET

    SHGetFileInfo does not work for large icons

    I need to use SHGetFileInfo to display large icons.For small icon display it works fine. If i change the parameter to display large icon it does not display the file with large icon, it always displays small icon.

    hImgSmall = Win32.SHGetFile Info(fName, 0, ref shinfo, (uint)Marshal.S izeOf(shinfo), Win32.SHGFI_ICO N | Win32.SHGFI_SMA LLICON);

    hImgLarge = Win32.SHGetFile Info(fName, 0, ref shinfo, (uint)Marshal.S izeOf(shinfo),...
    See more | Go to post

  • Nilam2477
    started a topic DrawLine() does not work
    in .NET

    DrawLine() does not work

    I'm trying to draw a line on the form in C#.
    When i place the below draw line code in Form1_Load() method it does not draw the line when application starts. But if the same code is placed in Form1_Paint() method it works.
    System.Drawing. Pen myPen = new System.Drawing. Pen(System.Draw ing.Color.Red, 5);
    System.Drawing. Graphics formGraphics = this.CreateGrap hics();
    formGraphics.Dr awLine(myPen, 10, 10, 150, 200);
    ...
    See more | Go to post

  • How to embed Excel spreadsheet in Windows forms application

    I have a windows Form. I need to have a link for the Microsoft Excel Worksheet which will contain an embedded spreadsheet. When clicked, Excel will launch and allow the user to edit the spreadsheet. How can i do this in C#? Pls help
    See more | Go to post

  • Nilam2477
    started a topic CXX0017: Error: symbol "hr" not found
    in .NET

    CXX0017: Error: symbol "hr" not found

    I have an application which is converted from VC6 to VC7.1 (.net 2003)
    I'm trying to debug in .net 2003 i need to check the return value HRESULT value. I have declared hr as
    HRESULT hr = S_OK;
    When i add "hr" in watch window it displays a message CXX0017: Error: symbol "hr" not found
    When i try to set the cursor on HRESULT hr = S_OK line (using Set Next Statement) it does not execute that line....
    See more | Go to post

  • Nilam2477
    replied to using WinZip32 in C#
    in .NET
    I tried to use GZipStream class to compress the files. But when i tried to unzip using WinZip32.exe it dint work. There was an error message "Cannot open file it does not appear to be a valid archive". Does this mean that i cannot using WinZip utility to unzip the files which are compressed using GZipStream. Is there any other alternative?
    See more | Go to post

    Leave a comment:


  • Nilam2477
    replied to using WinZip32 in C#
    in .NET
    using WinZip32 in C#

    The command line prompt for running winzip. The below command zips "1.txt" file into "zippy.zip"
    C:\Program Files\WinZip>wi nzip32.exe -min -a D:zippy.zip D:\\1.txt

    I want to do this programatically using C# using Process.Start() . I have trouble specifing the parameters for winzip exe. If i give only the exe name as below winzip application opens
    System.Diagnost ics.Process.Sta rt("C:\\Progra m...
    See more | Go to post

    Leave a comment:


  • Nilam2477
    started a topic using WinZip32 in C#
    in .NET

    using WinZip32 in C#

    i need to zip the files/folder. How can i use winzip32.exe in C# code to programatically zip the files or folder. If you could provide some sample code that would be great. Thanks
    See more | Go to post
No activity results to display
Show More
Working...