User Profile

Collapse

Profile Sidebar

Collapse
jigsmshah
jigsmshah
Last Activity: Feb 13 '09, 01:32 PM
Joined: Aug 13 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jigsmshah
    started a topic CSS Height in IE,Fire Fox and Safari

    CSS Height in IE,Fire Fox and Safari

    I am using an Asp.Net CheckBoxList Control on an ASPX Page.This control is inside a DIV.I am applying Height to the DIV using the CSS.But the Height is not consistent among IE,FireFox and Safari.
    How can I have the Height consistent in IE,FireFox and Safari.?

    Thanking you in advance

    Following is the CSS Style used:
    Code:
    div#clsChkBoxList
    {
        height:114px;
        overflow:auto;
    }
    ...
    See more | Go to post
    Last edited by acoder; Feb 13 '09, 05:40 PM. Reason: Please use [code] tags

  • Print on a Network Printer which is not available to System on which the code runs

    i am working on a project (windows service using VB.Net and C#) which gets the check details and check images from the database and prints the check to a printer.

    Printer name is configured in a XML file.

    Printer names are names which are available to the system on which the service is running.

    Printers used are network printers and are added using Printers and Faxes -> Add a printer.

    ...
    See more | Go to post

  • yes it is possible to do so...
    please search on the web u may find it.............
    See more | Go to post

    Leave a comment:


  • See it is not strange,you iterating the Collection object and remove the controls
    from it so the for loop wont iterate for the number of controls you have in the panel.Instead of Dispose you try to make controls invisible,the for loop will work properly as you are not deleting the controls from the ControlCollecti on.
    Hope it makes sense.

    try to use
    panel.Controls. Clear();

    Regards
    Jignesh...
    See more | Go to post

    Leave a comment:


  • c# multiple instances of windows services and file reading

    I have a windows service developed in C#.I am reading the connection string from an ini file and also i am reading 3 image file from the bin directory.
    now the new requirement is that there will be multiple instances of the same windows service running.
    My concern is that will there be any problem when multiple instances will be reading those above mentioned file.I am not writing to any files in the service.
    If i try to use lock()...
    See more | Go to post

  • jigsmshah
    replied to Calling function of ChildForm from MDIForm
    in .NET
    if u r getting the reference of the child form ,then try to cast the reference to
    respective class.and then see if ur getting the function u want to invoke
    See more | Go to post

    Leave a comment:


  • You can do one thing,that is provide windows application exe in the bin folder of the web application.Int egrating web and winforms is not possible.Also you must have noticed that ASP.Net does not allow the use of MessageBoxes.I have seen web applications bundled with win apps exes.
    Do let me what approach you will be taking ?,we will discuss
    Regards
    Jignesh...
    See more | Go to post

    Leave a comment:


  • try to use 'ParameterDirec tion.ReturnValu e' rather than output
    what ever value you return from stored procedure will be available in this returnValue in the front end
    For better ubderstanding please refer the following link
    http://www.mcse.ms/message1454145. html

    Regards
    Jignesh
    See more | Go to post

    Leave a comment:


  • Create multiple instances of windows services in .net

    how can i create one more instance of windows service on the same sysyem?
    I have one service already working,the new requiremnt is to create one more instance of the same service on the same system.
    Any help will be appreciate
    Regards
    See more | Go to post

  • jigsmshah
    replied to could not load a file or assembly
    in .NET
    Hope u have the reference of that DLL in ur project.I was also trying to load the DLL dynamically and was getting the same error.
    I had used the code that i had mentioned below.hope by adding reference u will be able to solve the problem.Do let me know
    Regards
    Jignesh

    Type type = Type.GetType(Sy stem.Configurat ion.Configurati onSettings.AppS ettings["ClassTypeMSAcc ess"]);
    INorthWindDataF actory io...
    See more | Go to post

    Leave a comment:


  • with windows service dont try to show any Winforms (frm.Show()),i guess u r trying to do that.It is not a good practice.
    Regards
    Jignesh
    See more | Go to post

    Leave a comment:


  • jigsmshah
    replied to Winforms client resizing sluggish
    in .NET
    hi
    the way we used to do is to use panels, and it have the property call Fill,so when u try to resize the form ,the panel also fills in.
    See more | Go to post

    Leave a comment:


  • winforms has a property called AutoScroll or autoscrollbar,t ry to set it to true.
    else set scroll bar to true.this will work.
    MSDN has some articles that mentoins about a property,i am right now cant remember,but that didnt work for me.
    like we had a winforms app and users were using that app at different resolutions.So the users were not able to reach most of the buttons,so if u provide a scroll bar then user can scroll down...
    See more | Go to post

    Leave a comment:


  • C# App To print text file at 0,0 (x,y) coordinate of the page

    I need to print a text file .When i print it ,it is not printed exactly form 0,0 coordiante of the page. I mean the top most left corner.It is leaving some margin from top and from left.The code is an example from MSDN.
    I am using c# 2.0 and VS 2005.I have just chaged the X coordinate for the DrawString function.i am using it as 0 and the Y coordinate is calculated.

    This is just a test application, as i have to take the printing...
    See more | Go to post
No activity results to display
Show More
Working...