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

Search:

Type: Posts; User: AmitInnani

Page 1 of 4 1 2 3 4

Search: Search took 0.04 seconds.

  1. How to get the client side printers details?

    Hi All,

    I need to get the list of the printers on client machine at client side and then have to populate those in combobox.

    Can anybody tell me is there any way to do this in ASP.NET and / or...
  2. Replies
    2
    Views
    1,020

    Re: using javascript how to validate controls

    I think you are missing the form in document.getelementbyid

    try using document.form1.control name.value.

    And make sure the function is returning true if the value is selected for this u may add...
  3. Replies
    2
    Views
    540

    Re: MCMS with ASP.Net

    Thanks a lot !!!!!!!!! :)
  4. Replies
    2
    Views
    540

    MCMS with ASP.Net

    Hi Friends,

    I am creating one web based application in Asp.Net 2003.

    Its kind of the Intra-Organisation Emailing or message broadcasting type of the application.
    The project owner is...
  5. Replies
    1
    Views
    1,336

    Re: web service throws uncatchable exception

    Hi

    Whether you resolved this problem?

    I am also getting the Error
    "No connection could be made because the target machine actively refused it "

    Can you help me in solving this?

    Amit
  6. Replies
    2
    Views
    1,012

    Re: How to deploy the ASP.Net 2005 website?

    I was able to deploy the website with the help of article

    http://www.codeproject.com/aspnet/deployingwebapplications.asp

    But as i am running the application i am getting the error........
    ...
  7. Replies
    2
    Views
    1,012

    How to deploy the ASP.Net 2005 website?

    I am new to the ASP.Net and currenlty working on the 2005 version, I want to deploy the website.

    Can anybody help me on this?

    Thanks :wave:
    Amit
  8. Re: Multiple validation on the click of the submit button

    I got my mistake, i was calling javascript function only . But the way i was calling it was wrong.

    Code ::

    Initially i wrote code as ::

    btnNext.Attirbutes.Add("OnClick", "ValidateValues()") ...
  9. Multiple validation on the click of the submit button

    Hi all,

    I am trying to validate the multiple controls, on click of the next button on the ASP Page. (Next Button is the server control).

    In the validation of the multiple controls for example 3...
  10. How to set the values to server side controls on pageload?

    Hi,

    I am having three combo boxes for the day, month and year. All three of them are server side controls.

    These combo boxes are already been filled with the values, now i want to set the...
  11. Replies
    2
    Views
    826

    HTML form Control event handling

    Hi Can anybody help me to correct this one?

    I am getting error message "document.form.Test2" is null or not an object.

    I am new to HTML and Scripting.


    <html>
    <title>JAVASCRIPT</title>
  12. What the equivalent of the Val (VB.Net) function in C#

    Hi,

    I am trying to do multiplication of the two double number from the textbox.

    It is giving me FormatException for the blank textbox and if the textbox is having purely string value.

    Code...
  13. Replies
    2
    Views
    534

    Progress Language to VB.Net Migration

    Does anybody have any idea on Progress Language to .Net Migration?

    Any help will be appreciated.

    Thank you.

    Amit Innani
  14. Re: Datagrid: Selecting a cell will automatically select the row

    In mouse upe event of the grid u can write

    Dim pt As Point = New Point(e.X, e.Y)
    Dim hti As DataGrid.HitTestInfo = dgSuppliesRecords.HitTest(pt)
    If hti.Type = DataGrid.HitTestType.Cell Then
    ...
  15. Datagridview :: How to add image to a column?

    I want to display Icon in my datagrid, as an indicator for the row.

    For the same i want to add the icon/image to the column.

    How to do it, can any one help me?

    I am new to Datagridview, any...
  16. Replies
    4
    Views
    1,185

    Re: Datagrid Row heading

    Thanks it worked. :wave:
  17. Replies
    4
    Views
    1,185

    Re: Datagrid How heading

    Thanks

    But this will set the column heading, I want to set the Row Heading i,e Fixed column on Left Hand Side.
  18. Replies
    0
    Views
    536

    Datagrid Scrolling Synchronizatiion.

    Is there any way to synchronize the scrolling of the two datagrids?

    So that one i can use as freeze pane and another one to show the details.

    Any help will be appreciated?

    Thanks :wave:
  19. Replies
    4
    Views
    1,185

    Datagrid Row heading

    Can we set the RowHeading to datagrid rows?

    If Yes, kindly help me in how to do it or how to freeze the first column of the grid.


    Or how can we freeze the column of the datagrid?

    Thanks...
  20. Replies
    2
    Views
    1,241

    Re: Delete & Create Access Table

    Check the datatyps in the SQL Queries as Varchar in SQL is Text in Access. May be that can be the problem, if so see the differences in both in attached files.
  21. Replies
    2
    Views
    1,897

    Re: as Any Keyword in VB.NET?

    Try adding the dll to the reference of the project, from the solution explorer --> Reference --> Right Click --> Add Reference
  22. Replies
    0
    Views
    1,137

    DataGrid ComboBox KeyPress Problem

    Hi,

    I am tyring to add the combo box to the datagrid.
    Now the combo box is appearing properly in the grid and i am able to work with it with mouse and keys as well.

    Now when I press up or...
  23. Replies
    0
    Views
    1,920

    Flexgrid Column Width

    In my flexgrid i have 20 columns.

    To assign width for each column i wrote code as

    FlexGrid.Width / 20

    I am trying to divide the width of the flexgrid by number of columns.

    Now the width...
  24. Replies
    0
    Views
    783

    Editable Flexgrid

    Do any body knows how to make editable flex grid?

    I am trying to put the control on every column, when user clicks on it.
    I want to display the control of the same size of the selected. but some...
  25. Replies
    0
    Views
    831

    Adding Row in Datagrid

    I am trying to make my datagrid editable, so that the user can type his data on the grid it self and it will be displayed in the datagrid.

    On mousedown event of the grid I am trying to show the...
Results 1 to 25 of 98
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured