Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
N

nareshss

@nareshss
About
Posts
36
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • String iterations ....
    N nareshss

    By using "Console.WriteLine" is the answer for my question . He asked me the basic question but i thought that there is any other tech to implement like that .... Thats wat ... ok Thanq Saayman ....

    C# csharp oop help

  • String iterations ....
    N nareshss

    Thanq ... This is the Question i faced in an interview . Thats y am asking , is there any procedure to do it . thats all .... Thanq frnds ...

    C# csharp oop help

  • String iterations ....
    N nareshss

    Hi Every 1, Iam new to C# (Object Oriented Concepts ) i have a doubt lie this ------------ I want to Repeat a String ( Satish ) for 100 times with out using any loops , arrays n conditions .. Ex : Satish Satish Satish Satish Satish Satish Satish - - - - Satish Like this 100 times i need ... Plz help me ... Thanks in Advance ...

    C# csharp oop help

  • Online Shopping in ASP.NET
    N nareshss

    HI John This will be useful for me also ... i need an application in Internet banking .. plz help me .. Bye ... Naresh

    ASP.NET csharp asp-net tutorial

  • Sql server Authentication Problem
    N nareshss

    k ill do it now... Thanks for ur help... if i face any prob ill let u kw.. bye ... naresh

    Database csharp help database sql-server dotnet

  • Sql server Authentication Problem
    N nareshss

    sssssssss....... i aslo done like this .... i created usrname , pswd for that ... iam getting the query enalizer ... but wer shud i get Enterprise manager in this scenario ...

    Database csharp help database sql-server dotnet

  • Sql server Authentication Problem
    N nareshss

    no am not getting .... same error ....... unable to connect wat ive to do... is there any compatible verson of sql server ......

    Database csharp help database sql-server dotnet

  • Sql server Authentication Problem
    N nareshss

    hiiiiii... k i think u didnt get it... k my problem is not about the database connectivity ... iam juz starting sql server ... i wanna practice queries ... So i installed Sql server studio 2005 management express edition ... i installed in my PC ... Its successfully installed .. but wen am going to use sql server it is asking about username and password for sql server connection enabling ... but i dont kw how to login .. the window options r like this ... Server Type : Database Engine Sql Server Compact edition Server Name : My system name or browse Authe mode : Windows Sql Server wen i click on Sql server Login : Pwd Connect cancel ----- -------- plz help me thanks in advance naresh

    Database csharp help database sql-server dotnet

  • Sql server Authentication Problem
    N nareshss

    Hi .... Iam new to dotnet and Sql server ... I want to install sql server in my system .. Ive 180 days trail version ... its installed but i cant able to login ... My System name is NARESH ... It asking about system name , username and passwords .. I gave "sa" , "sa" . But it is showling like unable to login with NARESH ... Plz help me ... Ive .net framework 2.0 in my system .. Thanks in advance Naresh

    Database csharp help database sql-server dotnet

  • Availablity Calendar Controls Needed
    N nareshss

    hi.... u go through this like .... i think it will helps u .... http://www.codeguru.com/csharp/.net/net_asp/controls/article.php/c12235/[^] bye naresh.s.s

    ASP.NET php question

  • UserName/Password validation without StoredProc [modified]
    N nareshss

    Hi ,,, U can create using XML , and java script... for java script code u can c this link i think it will useful for u http://www.ondotnet.com/pub/a/dotnet/2001/06/21/webforms.html?page=1[^] naresh.s.s

    ASP.NET csharp database help tutorial

  • Data grid Problem :- Very Urgent
    N nareshss

    Hi i didnt get ur question... could u plz make ur question clear wat do u mean of "value of recovery" ? bye naresh.s.s

    ASP.NET help css

  • Another way of getting the Text in the TextBox?
    N nareshss

    Sorry ... I didnt watch it clearly ... anyways Bye ... Have a nice day naresh.s.s

    ASP.NET question

  • Another way of getting the Text in the TextBox?
    N nareshss

    Hi chand gud question... it is useful for all .... thanq naresh.s.s

    ASP.NET question

  • Flow Layout in VS 2005
    N nareshss

    Hi... You can do like this .... Click on " Layout " in the top of ur IDE's menu bar , after that "Postion " n set " auto postion options " to absolute then u can drap the control easily.... Naresh.s.s

    ASP.NET csharp css asp-net visual-studio tutorial

  • How to implement windows application with OPEN FILE DIALOG & SAVE FILE DIALOG
    N nareshss

    sssss Ive done upto open dialog it will gies the path ... but for the sae dialog am not getting the path there .... and i cant able to save the file to desired forder ... my code is ....... For Opendailog OpenFileDialog fdlg = new OpenFileDialog(); SaveFileDialog dlg = new SaveFileDialog(); fdlg.Title = "Browse any file from here "; fdlg.InitialDirectory = @"c:/Resume"; fdlg.Filter = "All files (*.*)|*.*|All files (*.*)|*.*"; fdlg.FilterIndex = 2; fdlg.RestoreDirectory = true; if (fdlg.ShowDialog() == DialogResult.OK) { textBox1.Text = fdlg.FileName; } for Savedailog saveFileDialog1.Title = "Specify Destination Filename"; saveFileDialog1.Filter = "Text Files|*.txt"; saveFileDialog1.OverwritePrompt = true; saveFileDialog1.FilterIndex = 1; if (saveFileDialog1.ShowDialog() != DialogResult.Cancel) { textBox1.Text = saveFileDialog1.FileName; } this is wat ive done till now ... but iam not gettign the path there at textbox1 when iam going to save the file ... Plz help me ..... bye naresh.s.s

    C# csharp help tutorial

  • How to implement windows application with OPEN FILE DIALOG & SAVE FILE DIALOG
    N nareshss

    sssss Ive done upto open dialog it will gies the path ... but for the sae dialog am not getting the path there .... and i cant able to save the file to desired forder ... my code is ....... For Opendailog OpenFileDialog fdlg = new OpenFileDialog(); SaveFileDialog dlg = new SaveFileDialog(); fdlg.Title = "Browse any file from here "; fdlg.InitialDirectory = @"c:/Resume"; fdlg.Filter = "All files (*.*)|*.*|All files (*.*)|*.*"; fdlg.FilterIndex = 2; fdlg.RestoreDirectory = true; if (fdlg.ShowDialog() == DialogResult.OK) { textBox1.Text = fdlg.FileName; } for Savedailog saveFileDialog1.Title = "Specify Destination Filename"; saveFileDialog1.Filter = "Text Files|*.txt"; saveFileDialog1.OverwritePrompt = true; saveFileDialog1.FilterIndex = 1; if (saveFileDialog1.ShowDialog() != DialogResult.Cancel) { textBox1.Text = saveFileDialog1.FileName; } this is wat ive done till now ... but iam not gettign the path there at textbox1 when iam going to save the file ... Plz help me ..... bye naresh.s.s

    C# csharp help tutorial

  • How to implement windows application with OPEN FILE DIALOG & SAVE FILE DIALOG
    N nareshss

    Hi Every one .... I want to develope a "windows application" with openfile dailog and save filedialog in c# Plz help me ... Iam new to dotnet ... help me with examples Thanks inadvance naresh.s.s

    C# csharp help tutorial

  • dropdown list content
    N nareshss

    Hi U can use a Required Field validator and set Initial Value Property to "Select country name" So that if u select the item " Select country name " it wont select ... I think this will useful for u Bye Naresh.s.s

    ASP.NET question

  • How to register a webuser control in Server
    N nareshss

    Hi , Ive developed an application , there am using WebUserControl . In my PC the application is running successfully , Wen iam going to insert in my companies server its asking for registry .. What ive to do in this situation .... Plz help me ... Thanks in Advance Naresh.s.s.

    ASP.NET sysadmin windows-admin help tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups