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
A

absprogrammer

@absprogrammer
About
Posts
36
Topics
23
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • is it possible two modalbox in html page
    A absprogrammer

    Hi, Thanks for replying. my issue is I am working on web application in which i'm showing a pop up dialog as modal box. but when application is ideal for some time a lockscreen modal dialog appears. Thus I cannot access html page but i can access popup modal box which should not happen. lock screen is also a modalbox. So i want to handle two modalbox. please suggest if any alternative for this. Thnaks in advance.

    Web Development html tutorial

  • is it possible two modalbox in html page
    A absprogrammer

    Hi, I am using following code for modalbox. window.showModalDialog but i want handle two modal boxes at a time. I want know is it possible two modalbox for a HTML page, IE6.0. If yes how to handle them. Thanks in advance.

    Web Development html tutorial

  • connect oracle without oracle client
    A absprogrammer

    hi, Is it possible to connect oracle without 'tnsname.ora' in VB.NET I want to use tnsname.ora entry in connection string Eg. CONNECTSTRING=(DESCRIPTION=" & _ "(ADDRESS=(PROTOCOL=TCP)" & _ "(HOST=mysrv)(PORT=7001))" & _ "(CONNECT_DATA=(SERVICE_NAME=MYDB))); uid=read;pwd=read;"

    Database csharp oracle

  • how to access file at server side and print
    A absprogrammer

    hi, I am working on web application(ASP.NET ,VB.NET) and some reports push on server daily. GZ (application like winzip) is installed on only server machine not on client machine. I want to open report in GZ on server from any client machine and print on printer. Can I do this ? thanks in advance!!

    C# csharp asp-net sysadmin tutorial

  • open file at server side and print
    A absprogrammer

    hi, I am working on web application(ASP.NET ,VB.NET) and some reports push on server daily. GZ (application like winzip) is installed on only server machine not on client machine. I want to open report in GZ on server from any client machine and print on printer. Can I do this ? thanks in advance!!

    ASP.NET csharp asp-net sysadmin question

  • how to handlw datagrid keypressevent
    A absprogrammer

    I am using VS.NET 2003 and ASP.NET 1.1 i want to handle keypress event i datagrid's textbox using client side script. is it possible? Thanks in advance.

    ASP.NET

  • pop up calender ?
    A absprogrammer

    Can i give yearwise scroll criteria to ? thanks in advance.

    ASP.NET question

  • URL validation
    A absprogrammer

    how to validate any url ? eg. http:\\www.sample.net.in or www.gt.com or any genral pattarn od url

    ASP.NET csharp com tutorial question

  • Cint method return value
    A absprogrammer

    Thanks for clarifying my doublts.

    ASP.NET question

  • How to access TextBox value of the Parent Page from the child page in server side
    A absprogrammer

    whatever u told is ok. but it is possible by storing textbox's value in session or using 'shared veriable' in Global.asax What do u think?

    ASP.NET help sysadmin tutorial

  • authandication problem for remote excel gnatt chart
    A absprogrammer

    hi, i'm openin MS excel and genrating gnatt chart using code as below. gnatt charts are open on server machine properly. but it does not open excel(only page refresh) on client machine. But when it open at client machine it always ask username,password windows. I want to open it without username,password window Can anybody knows what is solve problem?:confused: Sub excelgnattchart(ByVal stringWrite) Try Dim ExcellProcess() As System.Diagnostics.Process = System.Diagnostics.Process.GetProcessesByName("EXCEL") Dim a As Int32 = ExcellProcess.Length() Dim b As Int32 = 0 If (a > 0) Then While a > b ExcellProcess(b).Kill() b = b + 1 End While End If Catch ex As Exception End Try Dim oExcel As New Excel.ApplicationClass Dim oBook As Excel.WorkbookClass Dim oBooks As Excel.Workbooks Dim fname As String = "c:\chart.xls" Try Dim file As New FileInfo(fname) Dim sWriter As TextWriter = file.CreateText() sWriter.WriteLine(stringWrite.ToString) sWriter.Flush() sWriter.Close() oExcel.Visible = True oBooks = oExcel.Workbooks oBook = oBooks.Open(fname, , True) oExcel.Cells.Select() oExcel.Charts.Add() oExcel.ActiveChart.ChartType = Excel.XlChartType.xlColumnClustered oExcel.ActiveChart.Location(Excel.XlChartLocation.xlLocationAsNewSheet) oExcel.ActiveChart.HasTitle = False oExcel.Charts.Move() oBook.Close(False) System.Runtime.InteropServices.Marshal.ReleaseComObject(oBook) oBook = Nothing System.Runtime.InteropServices.Marshal.ReleaseComObject(oExcel) oExcel = Nothing System.GC.Collect() GC.WaitForPendingFinalizers() file.Delete() Catch ex As Exception Console.Write("Exception :" & ex.Message) End Try

    ASP.NET question sysadmin help

  • How to access TextBox value of the Parent Page from the child page in server side
    A absprogrammer

    you can use global veriable in global.asax i think this will help u

    ASP.NET help sysadmin tutorial

  • Cint method return value
    A absprogrammer

    cint(2.5) = 2 but cint(3.5) = 4 i check it for even odd values and i found that for only odd it give next number. why this happen? :confused:

    ASP.NET question

  • excel charts in asp.net application
    A absprogrammer

    hi I need some help on how exactly to display the excel graph control directly on the screen of ASP.NET application. Thanks in advance

    ASP.NET csharp asp-net data-structures help

  • Page refresh problem.
    A absprogrammer

    thanx server side onclick event

    ASP.NET help question

  • Page refresh problem.
    A absprogrammer

    here code -------------------- Private Sub ImageButton1_Click(ByVal sender As System.Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ImageButton1.Click upload_mail() End If Sub upload_mail() Dim query As String = "select client_email_id from n_client_info where id = " & Request.QueryString("clientkey_id") Dim strScript As String = "window.location =" & "'mailto:financial@ibhsolves.com'" & ";" & "</" + "script>" RegisterClientScriptBlock("anything", strScript) End Sub </x-turndown>

    ASP.NET help question

  • Page refresh problem.
    A absprogrammer

    hi, I am using imagebutton. On clickevent of imagebutton i am opening a popup window. but problem is that when i click imagebutton first time, then i close popup window. but after that if i refresh page that popup is again open. which i dont want. And this is happen with all of my imagebutton. can anybody help me?:confused: thanx in advance.

    ASP.NET help question

  • how to set value to htmlinput control(type = file)
    A absprogrammer

    thanx. i'm using asp.net using lang=vb.net then does any control/component available in asp.net ?

    ASP.NET help tutorial

  • how to set value to htmlinput control(type = file)
    A absprogrammer

    hi, i've browse option using if i write code txtoutputpath.value = "c:\aspfile.txt" then compiler give error but i want set a value to 'txtoutputpath' but i cant do it . how can set value to 'txtoutputpath' thnks in advance

    ASP.NET help tutorial

  • validator problem
    A absprogrammer

    hi, i want to compare date(> or < ) contain in two textboxes. after i enter invalid date. validator gives correct result. but after that if i enter correct date range still it give same message. can anybody help me thanks in advance.

    ASP.NET help
  • Login

  • Don't have an account? Register

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