Search:

Type: Posts; User: sonia.sardana

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    1
    Views
    629

    String Variable in C++

    We can define the variable as string data type or not.

    I have read by including the header file string.h, you can declare string type variable.
    But my program is having errors:- UNDEFINED SYMBOL...
  2. Replies
    4
    Views
    923

    What does * mean in C?

    char *str="SONIA";

    }

    What does the above line means?
    char *str--I guess by using * we can store more than one character in str.
    I am right or wrong??

    Please help me!!!!
  3. Replies
    12
    Views
    3,203

    Re: Please help me in C++ simple program

    O my God, Express 2013 is 790 MB uff!!!!!!!!!!
  4. Replies
    12
    Views
    3,203

    Re: Please help me in C++ simple program

    Thanks for the reply!!! On clicking the 2nd option, Further two options are there:-
    1)Express 2013 for windows desktop
    2) Ultimate 2013
    WHICH OPTION TO CHOOSE?
  5. Replies
    12
    Views
    3,203

    Re: Please help me in C++ simple program

    I have click on Microsoft Visual Studio Express 2013 for windows desktop.
    After clicking I have two options,see in IMAGE ATTACHED. I have chosen the first one.

    After clicking the first option,...
  6. Replies
    12
    Views
    3,203

    Re: Please help me in C++ simple program

    2Kaud very thanks for the reply!!! I will download Visual C++ express and will work on it!!! I am using Windows 7.

    I want to ask one more thing, to download Visual C++ express, I need to download...
  7. Replies
    12
    Views
    3,203

    Re: Please help me in C++ simple program

    I have downloaded DEV C++. I try to write the simple programm


    #include<iostream.h>
    int main()
    {
    cout<<"sonia";
    return 0;
    }
  8. Replies
    12
    Views
    3,203

    Please help me in C++ simple program

    #include<iostream>
    using namespace std;
    int main()
    {
    cout <<"sonia";
    return 0;
    }


    I want to run this simple C++ program. I am getting error Unable to unclude file 'iostream'.
  9. Replies
    2
    Views
    668

    Floating Point Number + NAN

    #include<stdio.h>
    #include<conio.h>
    float square(float);
    void main()
    {
    clrscr();
    float a,b;
    printf("ENter a Number");
    scanf("%f",&a);
    printf("Number=%f",a);
  10. Replies
    3
    Views
    713

    [RESOLVED] Display the Even numbe

    #include<stdio.h>
    #include<conio.h>
    void main()
    {
    clrscr();
    int i;
    for (i=1;i<=10;i++)
    {
    if (i%2==0)
    printf("\n%d",i "is even number");
  11. VS 2008 Re: Can we Type Hindi In Windows Application Textbox

    I dont want to use Google Translate , because Internet Connection is Required while using Google Translate...
    I want the string to be converted without using IE connection.
  12. VS 2008 Re: Can we Type Hindi In Windows Application Textbox

    OK. So we need to send hindi from .Net code too...

    Is that possible suppose I type SONIA (ENGLISH) in textbox, it will convert to सोनिया in textbox, as we leave the textbox.
  13. VS 2008 Re: Can we Type Hindi In Windows Application Textbox

    OK. So we need to send hindi from .Net code too...

    Is that possible suppose I type SONIA (ENGLISH) in textbox, it will convert to सोनिया in textbox, as we leave the textbox.
  14. VS 2008 Re: Can we Type Hindi In Windows Application Textbox

    Yes you are Right.. Is that possible???
  15. VS 2008 Can we Type Hindi In Windows Application Textbox

    My SQL Server is dsplaying Unicode Characters.


    declare @demo nvarchar(100)
    set @demo = N'यह एक'
    select @demo


    I want to insert Hindi in SQL from .Net, I am sending the Text "sonia"(IN...
  16. VS 2008 Please help me in creating VB.Net Windows Application in Hindi

    I want to develop the project in two languages Hindi & English.
    For the Buttons text , Label text - I used two resource files.

    I have login form in my project where the user creates his account....
  17. Replies
    3
    Views
    911

    VS 2012 Re: Windows Application Text in Hindi

    Current Language Set is Default (en-US) . I want to display all the text in hindi without using resource file..Is that Possible???
  18. Replies
    3
    Views
    911

    VS 2012 Windows Application Text in Hindi

    I want to develop Windows Application in VB.Net . I want to display all the text ( Label Text, Button Text , Textbox Text & Other Controls etc) in Hindi.... How can I do that?
  19. Replies
    5
    Views
    2,296

    VS 2005 Re: Login Control in ASP.Net

    I have successfully installed the ASP.Net membership tables in SQL database.
    Now I add the connecting string in the Web.Config


    <appSettings/>
    <connectionStrings>
    <add...
  20. Replies
    5
    Views
    2,296

    VS 2005 Login Control in ASP.Net

    I want to use Login Control in ASP.Net. I click on ASP.Net configuration. Change Authentication type, Create User named Sonia... & do all the steps. & successfully able to logged in & logged out of...
  21. VS 2005 Call Crystal Report on form + Invalid Report Sorce

    I have created Crystal Report in VS 2005. Crystal Report is bound using the SQL Server. Report is working correctly, Report is displaying the results (Main Report Preview) .
    I call the...
  22. Replies
    1
    Views
    763

    Triggers in SQL

    I have created an AFTERINSERT trigger & INSTEADOFINSERT trigger on tables.


    create trigger trig_AFTERINSERT
    on original
    FOR INSERT AS
    BEGIN
    INSERT trigger_original(Roll,UserName,Password)...
  23. Interview Questions - Help me in SOLVING

    1) Difference between VARCHAR in SQL 2000 & 2005?
    2) What is @, @@ in SQL?

    ANSWER - @ is used for local variable
    @@ is used for global variable

    Any more explanation?
    3) Is their any Implicit...
  24. Replies
    7
    Views
    1,995

    VS 2008 Re: Toolbox in VS 2008

    OH THANK GOD, I finally get the controls into the toolbox. I uninstall the VS 2008 Completely from the machine & then install it again.

    UnInstallation Steps : -
    1) UnInstall VS 2008
    2) Delete...
  25. Replies
    7
    Views
    1,995

    VS 2008 Re: Toolbox in VS 2008

    I try All the Solutions:-
    1) Reseting the Toolbox.
    2) Deleting all the tbd files from the App Data Folder - I delete all the tbd files then I restart VS. As the VS is opened tbd files are created...
  26. Replies
    7
    Views
    1,995

    VS 2008 Re: Toolbox in VS 2008

    I added Web Form , Default.aspx . Design View is Opened, Now I see Toolbox I have two tabs One HTML & other General Tab(With No Controls). Where are the other Controls - Label, Textbox ,...
  27. Replies
    7
    Views
    1,995

    VS 2008 Toolbox in VS 2008

    I have installed the VS 2008 on the windows 7. In my toolbox I have controls under HTML tag, But under General TAG - No Controls are there.
    Under General Tag I have - There are no usable controls in...
  28. Replies
    6
    Views
    142,087

    Want to Learn SIlverLight

    I want to learn SilverLight. I have never worked with SilverLight.. Please just help me how to get started with it....Do I need to install anything ??? Give me one example, where I can use...
  29. VS 2005 Re: A Non-numeric character was found where a numeric was expected + ORACLE

    Uff Its TOO DIFFICULT TO INSERT DATE IN ORACLE USING TO_DATE. I Changed my code as suggested by jmcilhinney



    Imports System.Globalization
    Imports System.Data.SqlClient
    Imports System.Data...
  30. VS 2005 A Non-numeric character was found where a numeric was expected + ORACLE

    Imports System.Globalization

    Imports System.Data
    Imports Oracle.DataAccess.Client

    Partial Class _Default
    Inherits System.Web.UI.Page
    Dim con As New OracleConnection("Data...
  31. Replies
    7
    Views
    1,129

    VS 2005 Re: Error in Inserting the Date

    I know, I have to use Calendar. But anyways my Question is DONE!!!!!




    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
    Try
    ...
  32. Replies
    3
    Views
    3,538

    Re: Checkbox Inside Gridview

    ITS DONE!!!!!
    You can handle the NULL value in Query itself and can return 0 or false from there for example


    Select isNull(ColName,'False') as [Active] from INSERT_QUESTION
  33. Replies
    7
    Views
    1,129

    VS 2005 [RESOLVED] Error in Inserting the Date

    I want to insert the Date into SQL that is entered in textbox, When i enter 18/07/2011 it is successfully converted to DateTime object ( WORKING CODE - BELOW) , but when I enter 18/7/2011 it is not...
  34. Re: Sys is Undefined + Script Manger

    Its DONE>>>>>>>>>>>>>>>>>>>>>

    You need to add the following Code in Web.Config : -


    <system.web>
    <!-- ADDED BY ME-->
    <httpHandlers>
    <remove verb="*" path="*.asmx"/>
    ...
  35. [RESOLVED] Sys is Undefined + Script Manger

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

    <%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral,...
  36. Replies
    0
    Views
    1,902

    Installing IIS in Windows 7

    I have tried to install the IIS on windows 7. But I am getting the ERROR -

    an error has occurred. not all of the features were successfully changed

    I have searched on the net & found that the...
  37. Replies
    0
    Views
    1,142

    Call WebService from JS

    UpdateMarks.asmx ( LOCATION ROOT FOLDER)



    using System;
    using System.Web;
    using System.Collections;
    using System.Web.Services;
    using System.Web.Services.Protocols;
    using...
  38. Replies
    2
    Views
    1,582

    Re: Session.Abandon

    Session.Abandon method is actually delete that session object completely when that current process is complete.
    In variable sAfterAbandon still “sonia” is dere, because FORM LOAD PROCEDURE IS NOT...
  39. Replies
    2
    Views
    1,582

    [RESOLVED] Session.Abandon

    protected void Page_Load(object sender, EventArgs e)
    {
    string sBeforeAbandon;
    string sAfterAbandon;

    sBeforeAbandon = Session["name"].ToString();
    ...
  40. Re: Error in Connecting C#.Net with ORACLE

    Hello abhijit, its done. Replacing the semi-colon with comma worked. BUt there is one change in your answer , we have to replace comma after the Data Source Also : -


    OracleConnection conn = new...
Results 1 to 40 of 481
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width