User Profile

Collapse

Profile Sidebar

Collapse
vee10
vee10
Last Activity: Mar 19 '09, 08:09 AM
Joined: Oct 17 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • hi,

    Yes i got the element since she passed it as an argument and it is the id of the image
    Code:
    <img src="set1.jpg" width="250" height="188" id="[B]prm[/B]" onClick="animateMe('prm');" alt="Click to start/stop animation">
    ...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to Handle &amp;
    Hi
    In my project i faced the same situation not only for & then i don't know this soln so i have written my own code for displaying & so by seeing this soln now i understood that i have to dig more in to the concepts...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to Handle &amp;
    Thanks for the solution
    See more | Go to post

    Leave a comment:


  • Hi,

    Its working fine for me in the IE also .
    Whats the error u r getting while executing in the IE .
    See more | Go to post

    Leave a comment:


  • Hi,

    in the script function u are comparing the disabledFldName s as an instance of array or not but while calling the fuction u r sending it as an array so always it will be false so the previous one which is enabled will not disabled

    forexample u first select the radio button 2 so permant address one will be enabled now u selected the radio button 3 and now the disabledFldName s will be only the currentAddress not the...
    See more | Go to post
    Last edited by gits; Aug 12 '08, 07:12 AM. Reason: useless quote

    Leave a comment:


  • vee10
    replied to Two Images changed when link is clicked
    Hi,

    U can do this by using two methods

    Method 1:
    Using Div tag

    Code:
    java script :
    
    function selectBgImg(whichImage){
    var color;
        if (document.body){
             document.body.background = bgImg[whichImage];
    switch(whichImage)
    {
    case 0:
    color = "images/curvepink.jpg"
    break;
    case 1:
    color = "images/curvegreen.jpg"
    ...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to Display tooltip when some event occurs
    Hi,

    This link may help u

    http://www.designerwiz .com/JavaScripts/link_box_descri bes_content.htm
    See more | Go to post

    Leave a comment:


  • vee10
    replied to NoBody Have any idea about Regsistry
    in .NET
    hi,

    This is just as example i am giving since i have used that in my application but according to ur requirement u should change


    Code:
    public string GetKeyValue()
    {
     string key = "hkey_local_machine", subKey = @"System\ControlSet001\Control\COM Name Arbiter", valueName = "ComDB";
          return( GetRegistryKeyValue(key, subKey, valueName));
    }
    ...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to Accessing SQL Database from VB.NET
    in .NET
    Hi,

    this is how u can open and close and execute queries

    Code:
    Partial Class Default4
        Inherits System.Web.UI.Page
    
        Private ConnectionString As String = "Data Source=PRAVEENAPC;Initial Catalog=testing;Integrated Security=True"
        Private reader As Data.SqlClient.SqlDataReader = Nothing
        Private conn As Data.SqlClient.SqlConnection = Nothing
        Private
    ...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to editable gridview
    in .NET
    Item Template is nothing but adding any linkbutton or textbox etc ie ading any single item control

    EditItem Template is adding some controls when we click the Edit button in the datagrid only these controls will be available after clicking edit in datagrid
    but in itemTemplate when the datagrid is loaded this will be available ie we can see the controls under <ITEMTEMPLATE > once datagrid is loaded
    but for <EDITITEMTEMPLA TE>...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to grid
    in .NET
    hi..

    Code:
            
            SqlConnection conn = new SqlConnection("Data Source=PRAVEENAPC;Initial Catalog=testing;Integrated Security=True");
            conn.Open();
            SqlCommand cmd = new SqlCommand();
            cmd.CommandText = "insert into emp values(";
            cmd.Connection = conn;
            for (int i = 0; i < GridView1.Columns.Count; i++)
            {
    ...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to grid
    in .NET
    Hi,

    I think on checking the checkbox in the datagrid any of the events is going to fire so u should place a button and do the necessay thing u want to do

    if u get any solution plz share that...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to DataGrid control question
    in .NET
    Hi,

    U can check this link

    http://www.aspdotnetco des.com/GridView_Insert _Edit_Update_De lete.aspx

    if any doubt u can post ur doubt...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to ExecuteReader
    in .NET
    Hi,
    u should initialize the connection property of the sqlcommand variable

    Code:
    cmd .Connection = conn;
    ...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to grid
    in .NET
    u can check out this link

    http://www.codeproject .com/KB/webforms/datagridcheckbo x.aspx...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to datagrid
    in .NET
    hi...

    sorry for posting wrong which is not ur requirement

    Code:
     <asp:GridView ID="GridView1" runat="server" > 
            <Columns>
                <asp:TemplateField HeaderText="Check">
                    <EditItemTemplate>
                        <asp:CheckBox ID="CheckBox1" runat="server" />
                    </EditItemTemplate>
    ...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to gridview
    in .NET
    Using Template field u can do that

    Code:
    <asp:GridView ID="GridView1" runat="server" > 
            <Columns>
                <asp:TemplateField HeaderText="Check">
                    <EditItemTemplate>
                        <asp:CheckBox ID="CheckBox1" runat="server" />
                    </EditItemTemplate>
    ...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to login button problem
    in .NET
    hi,

    should not use the && for queries
    da = "select * from login where username ='"+textbox1.te xt+"' and password ='"+textbox2.te xt + "'";...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to datagrid
    in .NET
    hi ..
    few days back i was also looking into the solution i got the solution

    http://www.aspdotnetco des.com/GridView_Insert _Edit_Update_De lete.aspx

    i am also just posting my code but its not using the database

    Code:
     
    
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default8.aspx.cs" Inherits="Default8" %>
    
    <!DOCTYPE html
    ...
    See more | Go to post

    Leave a comment:


  • vee10
    replied to [Javascript] Control combination select
    hello...

    break should be placed for every case
    example
    Code:
    switch()
    {
    case "Frank":
    break;
    case "Anthony":
    ----
    break;
    }
    at which position u r getting the object not supported...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...