Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

mnaveed

@mnaveed
About
Posts
136
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • ShowDialog not displaying form.
    M mnaveed

    Hi i am using a web browser control on a win form to display a webpage. it was working fine on xp 32bit. During testing on Windows 7 64bit after some time i m unable to see my form. Showdialog() call from button only display the icon and title of my form in taskbar, Form is not visible on the screen. only solution to make it work again is to remove my windows profile and create it again. i cant understand the problem please help. i am using VS2010 and C# thanks

    Nav.

    C# help csharp testing beta-testing

  • Multi Lingual Website
    M mnaveed

    check www.asp.net and look around for Starter Kits which help you to start....

    Nav.

    C# csharp asp-net help question

  • Multiple selection in a datagrid
    M mnaveed

    you can get some idea from here.. http://www.codeproject.com/aspnet/Multi-select_Dataagrid.asp[^] sorry if its not any help

    Nav.

    C# csharp question visual-studio

  • Deleting a dynamically created Excel file
    M mnaveed

    // Need this to clean up all refs workbook.Close(null,null,null); excelApp.Workbooks.Close(); excelApp.Quit(); System.Runtime.InteropServices.Marshal.ReleaseComObject (excelApp); System.Runtime.InteropServices.Marshal.ReleaseComObject (worksheet); System.Runtime.InteropServices.Marshal.ReleaseComObject (workbook); worksheet=null; workbook=null; excelApp= null; GC.Collect(); // final cleanup! then delete your file

    Nav.

    C# help

  • updating Assembley in GAC
    M mnaveed

    Hi i have created a C# DLL in VS2003 and installed it in GAC with WISE installer which actually register the dll in gac and add registry key. i am calling this dll from vbscript by using createobject method when i first time installed the dll and access it from script it works fine but when i change the version number after some updates in the code and install it again its not working in event log its giving the error for Invalid class string when i call it from vbscript. i even remove the previous version before new installation and restart my pc. this happen for all the dlls i m working they all work first time same error after new version of dll But if i change the ProgId its start working again. the problem is i dont want to change Progid every time i create new version. Any help thanks...alot

    Nav.

    COM help csharp dotnet windows-admin tools

  • updating Assembley in GAC
    M mnaveed

    Hi i have created a C# DLL in VS2003 and installed it in GAC with WISE installer which actually register the dll in gac and add registry key. i am calling this dll from vbscript by using createobject method when i first time installed the dll and access it from script it works fine but when i change the version number after some updates in the code and install it again its not working in event log its giving the error for Invalid class string when i call it from vbscript. i even remove the previous version before new installation and restart my pc. this happen for all the dlls i m working they all work first time same error after new version of dll But if i change the ProgId its start working again. the problem is i dont want to change Progid every time i create new version. Any help thanks...alot Nav.

    Nav.

    C# help csharp dotnet windows-admin tools

  • updating Assembley in GAC
    M mnaveed

    iisreset dont make any diff?????

    Nav.

    IT & Infrastructure help csharp dotnet windows-admin tools

  • updating Assembley in GAC
    M mnaveed

    Hi i have created a C# DLL in VS2003 and install it in GAC with WISE installer/windows installer which actually register the dll in gac and add registry key. i am using this dll from my vbscript by using createobject method when i first time installed the dll and access it from script it works fine but when i change the version number after some updates in the code and install it again its not working in event log its giving the error for Invalid class string when i call it from vbscript. i even remove the previous version before new installation and restart my pc. this happen for all the dlls i m working they all work first time same error after new version of dll But if i change the ProgId its start working again. the problem is i dont want to change Progid every time i create new version. Any help thanks...alot

    Nav.

    IT & Infrastructure help csharp dotnet windows-admin tools

  • getting control value from table cell with javascript
    M mnaveed

    can you please let me know how i can get the value of a control which is in TD section of a table i can access the table with javascript and all its row but dont know how i can get control from cell. sorry cant post the code hope you not mind. thanks

    Nav.

    Web Development javascript help question

  • getting control value from table cell with javascript
    M mnaveed

    hi i have genrate a table dynamically with javascript and each row contains a input textbox control with ID and i want to loop through and access the value of each textbox at button click. for (i; i < Table.rows.length; i++) { var oRow = Table.rows(i); ???????????? need control value here is there any way to get control here like oRow.Cells[0]....... } thanks for your help..

    Nav.

    Web Development javascript help question

  • deguging goes in to not responding mode in VS2005
    M mnaveed

    HI my windows App goes in to not responding mode when i set a break point in click event or any where in my app.if i start debuging control come to the main function but when i set beak point any where it just goes into not responding mode before that breakpoint. it works fine if ther is no break point. thanks for your reply.

    Nav.

    Visual Studio debugging

  • Debuging Step Into(F11) Problem in VS2003
    M mnaveed

    its a debug version and pdb file is in the same folder as dll. i find out that if i change the verion of the dll its start debuging the dll other wise not. any suggesions

    Nav.

    Visual Studio csharp debugging help question

  • Debuging Step Into(F11) Problem in VS2003
    M mnaveed

    thanks for reply i will try this

    Nav.

    Visual Studio csharp debugging help question

  • Debuging Step Into(F11) Problem in VS2003
    M mnaveed

    In the Solution I have, I have 2 projects - one is a Windows Application - and the second is a C# DLL file that has functions and classes defined. The Windows form calls a function in the C# file, when a button is clicked in the form. Problem: I am trying to debug this function. Single step debug using Step into (From Debug menu) or F11 as the shortcut. However, when I hit F11 to step into the function, .NET will not go and allow me to debug the funtion one line at a time. It will not go to the function in the C# DLL at all, but rather behaves as if I hit "Step Over F10" and proceeds to next line of code in windows form without going to the C# DLL. I have the reference of the C# Dll in the Windows app. Also tried putting Break points in the C# DLL. But inspite of the breakpoints, it will not single step in the C# code, but move over to next line in the windows app. Is there a setting? I am connected to Source safe for this solution and all files are checked out. Even tried working disconnected but same problem. I do not think its a .NET install problem because for other locally created projects, the debug feature works ok... i try deleting the debug folders for all apps and rebuild but no luck. Please suggest some ways out of this crazyiness.

    Nav.

    Visual Studio csharp debugging help question

  • How to compute end date given the start date?
    M mnaveed

    lblEndDate.Text = Calendar1.SelectedDate.AddMonths(3).ToString("dd MMM yyyy");

    Nav.

    ASP.NET csharp tutorial question

  • schedule task by the interval of day,month,year
    M mnaveed

    hav a look on these http://www.codeproject.com/csharp/scheduler.asp[^] http://www.codeproject.com/csharp/taskschedulerlibrary.asp[^] http://www.c-sharpcorner.com/Code/2004/Oct/ApplicationScheduler.asp[^]

    Nav.

    ASP.NET database help tutorial

  • please guys , straight answer for a clear question how can i know which control cuased the post back ?
    M mnaveed

    check this one out:-> http://aspadvice.com/blogs/joteke/archive/2004/08/05/2288.aspx[^]

    Nav.

    ASP.NET question

  • what is SqlDataSource ?
    M mnaveed

    check this http://www.asp.net/QuickStart/aspnet/doc/ctrlref/data/sqldatasource.aspx[^]

    Nav.

    ASP.NET question csharp asp-net

  • Creating Email account
    M mnaveed

    you need to create a user interface page where you collect all user details or u can use WizardControl[^] for this as wel. in second step you need to create a DataBase and a table for saving you user details. thats it so simple and its finish.:)

    Nav.

    ASP.NET csharp asp-net question

  • convert html page into pdf format file in asp.net code
    M mnaveed

    hav a look on this one http://www.codeproject.com/csharp/pdfizer.asp[^]

    Nav.

    ASP.NET csharp html asp-net help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups