User Profile

Collapse

Profile Sidebar

Collapse
romepatel
romepatel
Last Activity: Oct 25 '10, 02:55 PM
Joined: Nov 12 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • romepatel
    started a topic Post Values from WebBrowser in Windows Form

    Post Values from WebBrowser in Windows Form

    Hi,

    I am using VS 2005 and C#

    I am using a webbrowser in a windows form.
    This webbrowser is loaded with a web form (<form method="POST" >).

    Now i want to fetch the POSTED values from webbrowser into my Windows Form.

    How can i do that ....?

    Thanks in advance
    See more | Go to post

  • romepatel
    replied to User Control Events
    Hi,

    It got solved by adding

    private void img_Click(objec t sender, EventArgs e)
    {
    base.OnClick(e) ;
    }
    See more | Go to post

    Leave a comment:


  • romepatel
    started a topic User Control Events

    User Control Events

    Hi,

    I am working on Windows Form.

    I have a user control, which has an Image(PictureBo x) and a label.


    Now When i am using it on the form and i have attached an click event on the user control.

    When i click on the control the click event works fine, but when i click on the image or label inside the user control, it calls the events of the image and label respectively. But i don't want to call...
    See more | Go to post

  • romepatel
    started a topic MouseEnter Event

    MouseEnter Event

    Hi,

    I am creating a panel at run time.
    Inside that panel i am creating 2 lables.

    I had attached mouseenter and mouseleave events for label as well as panel.

    Now I want to call the events of mouseenter of lable, when the mouse enters the panel.

    How to i do that .......?
    See more | Go to post

  • Thanks for your reply.......

    what your saying is true........
    but i need to refresh the parent page only when the child page is closed........! !!

    How do i do that.......?
    See more | Go to post

    Leave a comment:


  • romepatel
    started a topic How to detect the window close event.

    How to detect the window close event.

    I have an parent-child window. I need to refresh the parent window when the child window is closed. I had tried
    Code:
    <body onunload="window.opener.location.reload();">
    When i navigate to different page in the child window , each and every time the parent window is refreshed. I want to refresh it only when the child window is closed. How can i do that?
    See more | Go to post

  • romepatel
    started a topic On Browser Zoom -in/out

    On Browser Zoom -in/out

    Hi,

    I want to set the table width and height to the screen width and height of the browser,
    so that the page is fixed the screen size.
    For now i am assigning the width and height on the page load by JavaScript.
    But when the user Zoom -in/out the table width and height doesn't change.
    If i refresh the page, then it is working fine, but i want to change the width as the user zoom-in/out his browser.
    ...
    See more | Go to post

  • romepatel
    started a topic trim function

    trim function

    Hi,
    I am newbie to the javascript
    I need to validate the text box,
    i want to enter the blank value in the text box,
    so in order to remove white spaces, i had used trim function,
    but it is not effected and it gives me javascript error in IE6,

    Even the example of w3school is also not working in IE6.

    Please help me out....!!!!

    Thanks in advance
    See more | Go to post

  • romepatel
    replied to Get the Top value
    Hi,

    Thanks for your reply,

    but when i am changing the position to fixed, it is not reflected in IE6, on the other hand it is disturbing whole alignment., its working fine in Firefox 3.5

    For reference please check the following code


    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    ...
    See more | Go to post
    Last edited by gits; Jan 29 '10, 02:39 PM. Reason: fix bold to code tags

    Leave a comment:


  • romepatel
    started a topic Get the Top value

    Get the Top value

    Hi,

    I want to make the div tag , come along the screen as we scroll up, or down, left or right

    Can you help me out.

    Thanks in Advance.....!!! !
    See more | Go to post

  • romepatel
    started a topic Table Row innerHTML

    Table Row innerHTML

    Hello,

    I have an table, and i want to update whole row dynamically, according the user entered data......
    below is the example,

    Code:
    <html>
    <script type="text/javascript">
    function doThis()
    {
    	var strart_td ="<TD>";
    	var close_td  = "</TD>";
    	var str_value = '';
    	
    		str_value = str_value + strart_td + document.getElementById('txt1').value
    ...
    See more | Go to post
    Last edited by Dormilich; Dec 30 '09, 10:52 AM. Reason: Please use [code] tags when posting code

  • romepatel
    started a topic VC++ and C#.NET
    in .NET

    VC++ and C#.NET

    Hello,

    I have the knowledge of C++ and C#.NET,
    so is there a need to go for a class room training to study VC++,

    or else i can directly work on VC++,
    only basic changes, that can be referred by some books.


    Thanks in advance
    See more | Go to post

  • romepatel
    started a topic Adding the Row dynamically to the table

    Adding the Row dynamically to the table

    Hello,

    I am adding a row dynamically to the table ,

    Code:
    var table = document.getElementById('example');
    var rowCount  = table.rows.length;
    var row = table.insertRow(rowCount);
    now i want to set attributes to the new row added such as id, class etc

    How can i do that.

    Please help

    Thanks in advance
    See more | Go to post
    Last edited by Dormilich; Dec 28 '09, 11:39 AM. Reason: Please use [code] tags when posting code

  • romepatel
    started a topic DateTime to string
    in PHP

    DateTime to string

    Hello ,

    I have an PHP page,
    I have date stored in database with DateTime format, so i need to fetch it and append it to the string.

    I am unable to do that........

    So can you help me out.........

    Thanks in advance.....
    See more | Go to post

  • romepatel
    started a topic tr.even, tr.odd

    tr.even, tr.odd

    Hi,

    I have a table in my page, I want to give alternate effects to each row,
    so i have added tr.odd and tr.even in the styles sheet,

    Code:
    tr.odd {
    	margin-left: 5px;
    	padding-left: 5px;
    	padding-right: 5px;
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 10px;
    	color: #000;
    	text-align:center;
    	background-color: #FEE8C7;
    	height: 20px;
    	padding-top: 3px;
    ...
    See more | Go to post
    Last edited by acoder; Dec 22 '09, 01:48 PM. Reason: Please use [code] tags

  • romepatel
    started a topic Single Row Multiple Records in GridView

    Single Row Multiple Records in GridView

    Hi,

    I am using gridview in my windows form application.
    I want to display 3 records in a single row.

    How can i do it...?

    The same thing i can do it in asp.net by changing the property of RepeatDirection and RepeatColumns.

    I want to achieve same thing in windows form.....

    Please help me out......!!!

    Thanks in Advance
    See more | Go to post

  • romepatel
    replied to Horizontal scrollable DIV
    I had that but still am unable to get horizontal scrollbar for DIV tag......
    I it is wroking in IE, but not in Firefox 3.5

    <div style="width:24 5px; padding-left:0px; height:415px; padding-top:5px; position:absolu te; overflow:auto;" >

    ....some content.......

    </div>
    See more | Go to post

    Leave a comment:


  • romepatel
    replied to Horizontal scrollable Div in Firefox
    thanks 4 your reply

    but I need a horizontal scroll bar for my div tag.
    because I don't want a horizontal scroll bar for the actual web page
    See more | Go to post

    Leave a comment:


  • romepatel
    started a topic Horizontal scrollable Div in Firefox

    Horizontal scrollable Div in Firefox

    Hi,

    In Page I have a
    <div div style="width:24 5px; padding-left:0px; height:415px; padding-top:5px; position:absolu te; overflow:auto;" > </div>

    In IE , it is working fine, I can see Vertical and Horizontal scroll bar,
    but in firefox, I can see Only Vertical scroll bar, Because of this my alignment gets disturbed.

    So can you help me out how to render a horizontal scroll...
    See more | Go to post

  • romepatel
    replied to CK Editor
    in PHP
    Hello,

    I just called stripslashes.

    The problem was solved.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...