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
D

D4ever

@D4ever
About
Posts
17
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Help needs in Logging In
    D D4ever

    or the simple way is just keep a flag in database means when the user logs in set the flag to true and check this flag's value on Page Load event of the login page i.e if the flag is true the it will automatically redirect the page to another page else will not do any thing means will simply load the login page. and set flag to false when logged out this will serve your purpose. In this case you can open no of windows dont worry it will definately open as logged in.

    Darshana Pathak

    ASP.NET help question

  • how to display an image in gridview
    D D4ever

    it's simple you just have to add a ImageField in Gridview. Just select the Gridview & click on the arrow shown on Right side(Gridview Tasks)and Add New Column -->select ImageField(Choose a Field Type) & give your column name i.e the column having Path , used in the query to bind the gridview,in Data field If still not getting then revert back on my mail Id

    Darshana Pathak

    ASP.NET database sysadmin security help tutorial

  • Connection Timeout from one website but NO problem from another
    D D4ever

    is it working successfully with another website Simulteneously? Check one by one it can be possible that if one is using that connection so other may not be able to access. Or check your web.config file that u have written correct server name & database name.

    Darshana Pathak

    ASP.NET database help discussion

  • Connection Timeout from one website but NO problem from another
    D D4ever

    which databse u use?

    Darshana Pathak

    ASP.NET database help discussion

  • How to disable the back button of browser ?
    D D4ever

    but if MasterPage is Used then no need to write it seperately on all pages Just write it on MasterPage that will do

    Darshana Pathak

    ASP.NET tutorial question

  • How to Set Printer Settings Programatically?
    D D4ever

    i tried it but its not working

    Darshana Pathak

    ASP.NET csharp asp-net help tutorial question

  • querystring
    D D4ever

    but the very simplest way instead of using querystring u can use Page1.aspx session("value")="Hi" & use this session on another page Like Page2.aspx TextBox1.text=session("value")

    Darshana Pathak

    ASP.NET csharp asp-net tutorial

  • Browser settings
    D D4ever

    Yes u can change browser settings Internet Options==>Contenet==>AutoComplete==>Prompt me to save passwords

    Darshana Pathak

    ASP.NET help

  • How to disable the back button of browser ?
    D D4ever

    window.history.forward(1); Add this script tag in Page.aspx Source code at he top under head tag still not getting then revert back

    Darshana Pathak

    ASP.NET tutorial question

  • Problem With Grid View Header
    D D4ever

    onbutton click dim st as String 'check which is it's property Cells or Items st=Gridview1.Rows(0).Cells(0).HeaderText or st=Gridview1.Rows(0).Items(0).HeaderText 'Here Cells(0) or Items(0) means the 0th index Column So u have to do it for all Columns i.e.Cells(0),Cells(1),Cells(2),Cells(3).....

    Darshana Pathak

    ASP.NET css help

  • How to Set Printer Settings Programatically?
    D D4ever

    Hi, I am using window.print() to print the current window from Asp.net(VB) but now i want to set page size,printer name ,Orientation etc Programatically Please help me.

    Darshana Pathak

    ASP.NET csharp asp-net help tutorial question

  • from vb.net crystal report result directly export to pdf
    D D4ever

    hi did u tried it?

    Darshana Pathak

    Visual Basic csharp

  • How to store data from DataGridView to SQL Sever 2005 [modified]
    D D4ever

    can u tell me that upto which point ur successfully getting the results? reply so i can give u further hint

    Darshana Pathak

    Visual Basic database help tutorial question

  • How to store data from DataGridView to SQL Sever 2005 [modified]
    D D4ever

    You can bind gridview with query from coding For e.g. dim da as OledbDataAdapter dim dt as new DataTable dim st as String 'Enter Connection String dim cn as OledbConnection("") st="select a.name as Name,b.Address as Address from student a,info b" da=new OledbDataAdapter(st,cn) da.fill(dt) Gridview1.datasource=dt Gridview1.DataBind() and while Adding the ComboBox Column in Gridview You can Give DatatextField= Name & DataValueField= Address Same for ComboBox2 Column Try if Still Not getting then tell so i can give u my phone no so u can call me.

    Darshana Pathak

    Visual Basic database help tutorial question

  • Missing FileUpload Path
    D D4ever

    You can Use RequiredFieldValidator of Ajax Which will popup an error message on lostFocus of that control. try if not getting then reply.

    Darshana Pathak

    ASP.NET help visual-studio

  • How to store data from DataGridView to SQL Sever 2005 [modified]
    D D4ever

    Yes it is Possible. Make a For Loop from i=0 to gridview.rows.count-1 insert into transition values('"& ctype(gridview.findcontrol("ComboBox1"),DropDownList).selecteditem.text &"','"& ctype(gridview.findcontrol("ComboBox2"),DropDownList).selecteditem.text &"','"& ctype(gridview.findcontrol("TextBox1"),TextBox).Text &"','"& ctype(gridview.findcontrol("TextBox2"),TextBox).Text &"','"& ctype(gridview.findcontrol("TextBox3"),TextBox).Text &"') Try & if still not working then reply

    Darshana Pathak

    Visual Basic database help tutorial question

  • from vb.net crystal report result directly export to pdf
    D D4ever

    Imports CrystalDecisions.Web Imports CrystalDecisions.Shared Imports CrystalDecisions.CrystalReports.Engine Imports CrystalDecisions.CrystalReports.Engine.ReportDocument Partial Class test Inherits System.Web.UI.Page Dim cn As OledbConnection Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Call ShowReport() End Sub Sub ShowReport() ''*************************************************************************************** ''Don't change any line in the below code or the report will not work as expected ''*************************************************************************************** Dim ConnInfo As New ConnectionInfo With ConnInfo .DatabaseName = "test" End With Dim rpt As New ReportDocument rpt.Load(Server.MapPath("Abc.rpt")) Dim ParamFields As ParameterFields = Me.CrystalReportViewer.ParameterFieldInfo Dim ParamField As New ParameterField Dim ParamField_Value As New ParameterDiscreteValue ParamField.Name = "frmdt" ParamField_Value.Value = Session("FROMDATE") ''frmDate ''"30-Oct-2007 12:00:00" ParamField.CurrentValues.Add(ParamField_Value) rpt.ParameterFields("frmdt").CurrentValues.Add(ParamField_Value) ParamFields.Add(ParamField) ParamField = New ParameterField ParamField_Value = New ParameterDiscreteValue 'Here todt is the parameter name Created in Report ParamField.Name = "todt" ParamField_Value.Value = Session("TODATE") ''ToDate ''"31-Oct-2007 12:00:00" ParamField.CurrentValues.Add(ParamField_Value) rpt.ParameterFields("todt").CurrentValues.Add(ParamField_Value) ParamFields.Add(ParamField) ''*********** VERY IMPORTANT ''***************** ''Whenever using Parameter passing to CR :- Assigning the ParameterFields object to the ParameterFieldInfo of the CrystalReportViewer object programmatically will also suppress the default dialog asking for parameters that normally appears when you open a report with parameters. Me.CrystalReportViewer.ParameterFieldInfo = ParamFields For Each cnInfo As TableLogOnInfo In Me.CrystalReportViewer.LogOnInfo cnInfo.ConnectionInfo = ConnInfo Next '======================================================================================================== 'To Open Report In

    Visual Basic csharp
  • Login

  • Don't have an account? Register

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