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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
M

monika_vasvani

@monika_vasvani
About
Posts
89
Topics
68
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Datapager in Listview
    M monika_vasvani

    Hello, My code is: if (!IsPostBack) { ds = cn.MasterBind("select * from TblEmp"); if (ds.Tables[0].Rows.Count > 0) { lstEmp.DataSource = ds.Tables[0]; lstEmp.DataBind(); dp1.Visible = true; dp1.SetPageProperties(0, dp1.MaximumRows, false); //ClearState(); } } i set datapager setproperties in page load and also i set on search button click event. dp1.SetPageProperties(0, dp1.MaximumRows, false); lstEmp.DataSource = dsParent.Tables[0]; lstEmp.DataBind(); But my search result will not display on first index of datapager.On first index my previous data is displayed when i click on 2 page,my search result is displayed. i also set false to true but it doesn't work. Do u have any suggestion,pls help me. Thanks

    ASP.NET database help

  • Textbox with image problem
    M monika_vasvani

    Hello I have one problem.I put one textboxe on my form for searching.I have added one image in left side of textbox using css class. My problem is:I want to add second image near to first image and when i click on that image,one popup will be displayed which contains all data from database. i want to do all this procedure in one textbox. If u have any idea,pls suggest me. Thanks

    ASP.NET css database algorithms help

  • Resource file in .net
    M monika_vasvani

    Hello I am developing one web application.I want to use language options for this application. I have gone through resource files but i didn't get one point which is how to add values into different language means i add string as Name how to convert name into French language into value.and My full site has 50 pages how to convert each and every page string values through resource file. Pls explain me in details if u know this point. Thanks.

    ASP.NET csharp tutorial learning

  • Backup problem
    M monika_vasvani

    Hi all I got one error when i am trying to get backup of database. my error is:An exception of type 'Microsoft.SqlServer.Management.Smo.FailedOperationException' occurred in Microsoft.SqlServer.Smo.dll but was not handled in user code The medium on device 'd:\' expires on Aug 21 2009 6:44:24:000PM and cannot be overwritten. BACKUP DATABASE is terminating abnormally. my code is: ServerConnection connection = new ServerConnection(con); Server sqlServer = new Server(connection); sqlBackup.SqlBackup(sqlServer); //i got error on this line con is object of sqlconnection Thanks

    ASP.NET help database sysadmin

  • How to call VBA function on command event in access 2007?
    M monika_vasvani

    Hi All I am new with VBA in access. I have two buttons on access form.when i click on 1 button,my vba code has to run. how to do that? pls help me. Thanks

    Database help tutorial question

  • Chat
    M monika_vasvani

    Hi All, I have one problem.I have done chat application.but my problem is: suppose one customer and four employees are online.customer wants to chat perticular employee.First i want to send message to that perticular employee:"pls be online,customer wants to chat". but my problem is how can i send this alert message to perticular employee who selected by customer? This is the web appication. pls help as early as possible. Thanx

    ASP.NET help question sales lounge

  • Procedure and Codebehind Problem
    M monika_vasvani

    Hi all I have created one procedure: CREATE PROCEDURE [dbo].[dynamic_insert](@table varchar(50),@parameter nvarchar(4000)) AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; set @opration='insert into '+@table+'(+@testTable+) values(+ @parameter +)' end My front end code is: com.Parameters("@table").Value = "order1" com.Parameters.Add("@parameter", SqlDbType.NVarChar) com.Parameters("@parameter").Value = c2.cust_id & "," & c2.item_id & "," & c2.cust_items & "," & c2.item_name c2 is my class object. My problem is:when i assign values in parameter field,it takes as string. So data is not inserted. example: c2.cust_id = 1 c2.item_id = 1 c2.cust_items = "cd" c2.item_name = "pen" com.Parameters("@parameter").Value ="1,1,cd,pen" It's not possible to insert string. what i do?is there any another datatype? or another way? Thanks monika

    ASP.NET com help tutorial question

  • Dynamic Parameters in procedure
    M monika_vasvani

    Hi all I have tried to do one general procedure for insert,update,delete. first i am trying insert.I have one problem:how to pass dynamic parameters and values in stored procedure? Thanks monika

    Database database help tutorial question announcement

  • Gridview Problem
    M monika_vasvani

    Hi all I have one procedure in sqlserver. create procedure pro_UpdateCompanyData(@oldvalue varchar(50),@newvalue varchar(50)) as set nocount on Update CompanyType Set CompanyType.type=@newvalue where CompanyType.type=@oldvalue Go Type is my columnname in table CompanyType. now I have one gridview on page.I did Editcolumn and add edit,update and cancle button. i write some code on gridview_Rowupdated event. SqlDataSource1.UpdateCommandType=SqlDataSourceCommandType.StoredProcedure; SqlDataSource1.UpdateParameters.Add(new Parameter("@oldvalue", System.TypeCode.String, ((string)Session["oldvalue"]))); SqlDataSource1.UpdateParameters.Add(new Parameter("@newvalue", System.TypeCode.String, newvalue)); SqlDataSource1.UpdateCommand ="pro_UpdateCompanyData"; "@type is not a parameter for procedure pro_UpdateCompanyData." this error arise in this code. I am not getting this point.pls suggest me. Thanks monika

    ASP.NET help announcement

  • Gridview Problem
    M monika_vasvani

    Hi I have one gridview control.I have taken one button as Item tamplete,command name is "Delete". I have created one function: protected void gvUser_DeleteCommand(object sender,GridViewCommandEventHandler e) { Response.Write("hi"); } where I call this function?I was trying to call on "OnRowDeleted","OnRowCOmmand" but generates an error "No overload for 'gvUser_DeleteCommand' matches delegate 'System.Web.UI.WebControls.CommandEventHandler'" Pls if u have any solution,as early as possible reply me. Thanks monika

    ASP.NET help design question

  • Tabpanel Problem
    M monika_vasvani

    Hi all, I build in a navigation system inside the TabContainer. So there are tabpanel in tabcontainer. tere are four tabs and I want to move to the next tab when i click on the button. I am also using this code:TabContainer1.ActiveTab = TabContainer1.Tabs[1]; but it's not working also use javascript: function MoveTab(num) { var container = $find('TabContainer1'); container.set_activeTabIndex(num); } but no solution. If u have any idea about this,pls suggest me. Thanks monika

    ASP.NET javascript docker help

  • Fetching Problem
    M monika_vasvani

    Hi all I have one page. my design is :I have one table,it contains tancontainer,it contains tabpanel,it contains updatepanel,it contains table,it contains textbox. How can i fetch value of that textbox in c#.net? Pls if u have any solution,pls reply me. Thanks monika

    ASP.NET csharp question design help

  • Payroll System
    M monika_vasvani

    Hi ALl I have one wb based application of payroll system.I have all requirements and everything but i am weak in deasigning part. Can u pls help me in designing like company information web form? How it looks,how i design? If u have any designing part,pls send me just related to this application. Thanks Monika

    ASP.NET design business help question

  • username and passord problem
    M monika_vasvani

    Hi all I have already posted my article for access permission. But i would like to know how to give password and username to folder which is created at runtime? is it possible through coding in vb? If yes pls help me Thnaks monika

    Visual Basic help tutorial question

  • Access Permission
    M monika_vasvani

    Hi All I have one application in Visual Basic.I have created one folder at runtime.I want to give permission to that folder that only administrator can access this folder,nobody can. Is it possible in visual basic? Second problem is:I have created runtime excel files.It works perfectly. But problem is i want set allignment property through coding in excel file. My code is: Set AppXls = CreateObject("Excel.Application") Set ObjWb = AppXls.Workbooks.Add Set ObjWs = ObjWb.Worksheets.Add ObjWs.Range("B1").Value = "SISTER NIVEDITA SCHOOL ON WHEELS" ObjWs.Range("B2").Value = "SUPPORTED BY" 'ObjWs.Range("B2").Font.Bold = True ObjWs.Range("B3").Value = "SHARE AND CARE FOUNDATION-U.S.A" ObjWs.Range("B4").Value = "MEDICAL REPORT" ObjWs.Range("C4").Value = Label3.Caption ObjWs.Range("D4").Value = txt_date.Text ObjWs.Range("B7") = Text1(0).Text ObjWs.Range("B8") = cmb_address.Text ObjWs.Range("B9") = Text1(2).Text what i do? Pls help me. Thanks monika

    Visual Basic help question

  • Runtime Problem
    M monika_vasvani

    Hi ALl I have one windows based application in vb.net. when i place one button named as "Report" on form,it appears perfectly at design time but when run this application,i have not seen "Report" button on my form. what happened excetly? pls help me Thanks monika

    Visual Basic help csharp design question

  • Crystal Report Error
    M monika_vasvani

    Hello experts, I am trying to create simple report viewer in VB.NET (VS 2003) I put CRViewer control on the form and trying to assign .rpt file name to the ReportSource property But it doesn't work - i get message "Load report failed." I tried to download sample applications from BusinessObects Support site but all samples are using "build-in" reports. and I need to open .rpt file from the disk. Please help. monika

    Visual Basic help csharp visual-studio

  • sqlexception
    M monika_vasvani

    Hi I have written query like: dim str as string="true" Dim cmd As New OleDb.OleDbCommand("Select max(Invoice_No) from Invoice where flag= '" & str & "'", cn) cn.Open If IsDBNull(cmd.ExecuteScalar()) = True Then This statment fires exception:"No value given for one or more required parameters." when i fire this query directly from access,it runs successfully what is actual problem,i don't understand Thanks monika

    Visual Basic database help question

  • Debug problem
    M monika_vasvani

    I had an error in a program I was working on. A dialog box came up saying "do you want to view Disassembly?" I clicked OK just for the fun of it, and now every time I run the program it opens a new tab in VB.NET titled Disassembly. My guess is I checked an option to view the disassembly every time. However, I really don't want this to happen! Does anybody know how to turn this off again? monika

    Visual Basic help csharp debugging tutorial

  • Debug Problem
    M monika_vasvani

    hi I am not getting yr point.how is it possible my source code is not available? if this possible,what's the solution? pls help me Thanks monika

    Visual Basic help question csharp debugging
  • Login

  • Don't have an account? Register

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