Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. arunglobal

    SAP Screen from ASP.NET

    Hi Guys, I My ASP.NET appliaction has to open a SAP GUI Interface?. How to do that? Does SAP Connector has any solutions?. Thanks n Advance
  2. arunglobal

    Datagrid vanishing!

    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim Username As String = CStr(Session("Fullname")) If Username = "x" Or lbLoggedInAs.Text = "" Then Response.Redirect("login.aspx") End If...
  3. arunglobal

    Datagrid vanishing!

    Hi , Remove the " If Not (IsPostBack) Then "
  4. arunglobal

    <b>Trap "PrintScreen" button</b>

    Hi Pals, Tq for the Nce replies and Suggestions. But my Web Application is not a Commercial one. This is Particularly for Internal offcial purpose of Confidential things.(act like a Intranet application) so no screen capturing software can bee installed in the machines (Office machines). So...
  5. arunglobal

    <b>Trap "PrintScreen" button</b>

    Hi TQ My ultimate aim is to STOP taking screen shots of my web application.(ASP.Net) If we do some stuff in code behind then SCREEN SHOTS are possible while the page is in OFFLINE (Offline content). Any Idea
  6. arunglobal

    <b>Trap "PrintScreen" button</b>

    Hi Pals, I am n need to Block Print screen button in my web application client side (ASP.Net) iam using the below script to Block CTRL keys.but unable to trap "Print Scrn" /*Controls the CTRL keys*/ function keyWhat(e) { if (window.event.ctrlKey) { window.event.cancelBubble = true...
  7. arunglobal

    Block CTRL+C,CTRL+V and Print screen options ASP.Net (Client side)

    Hi Guys, I found the Solution which will Block CTRL Keys /*Controls the CTRL keys*/ function keyWhat(e) { if (window.event.ctrlKey) { window.event.cancelBubble = true; window.event.returnValue = false; return false; } } document.onkeydown=keyWhat; but i need to block print screen...
  8. arunglobal

    Block CTRL+C,CTRL+V and Print screen options ASP.Net (Client side)

    Hi All, I am n need to block CTRL+C,CTRL+V and Print screen options of my ASP.NET web application in client side. Any innovative ideas are welcome. thannks n advance.
  9. arunglobal

    DOWNLOAD in MAP DRIVE

    its on Server
  10. arunglobal

    DOWNLOAD in MAP DRIVE

    Hi Pals, I am having a ASP.NET application where i use VB code. I have to Download a Excel File Report to a Virtual Drive... I.e.... Application will be running in IIS server but the Excel files has to be Downloaded in another DB server(just a Download).. I am using a Streamwriter for the...
  11. arunglobal

    check all Checkbox

    Hi , Below code will make the SELECTALL/DESELECT ALL in Client side not in SERVER side. Create a CheckBox like this ---------------------------- <asp:CheckBox ID="chkAll" OnClick="javascript: return select_deselectAll (this.checked, this.id);"runat="server" AutoPostBack="false"...
  12. arunglobal

    Dynamic Class Creation

    Thank for ur Rapid Reply. I just want to create Data Object Class to Hold Record Through Properties. No. of Methods and Names of the Methods wll be Known only @ runtime. Hence Dynamic Class creation is Required.
  13. arunglobal

    Dynamic Class Creation

    Hi Guys, I just want to create Class , attributes , methods, properties,assignments statements etc... DYNAMICALLY (i.e Execution time) Any Idea...... Thanks in Advance
  14. arunglobal

    Windows Regional Settings - Change Calender Settings

    Hi Guys, In My application iam using English calender based date settings. But When the user changed to calender settings to japanese Calender then My SQL statements which used to retrieve data based on DATE is Not Working.Since the date stored in database is in english format. So i need to...
  15. arunglobal

    Handling Event Log

    Hi Guys, Iam having a Windows service which will execute sme piece of code periodically .During that iam writing Log in EVENT LOG. Upto this every thing is Fine. In the Event Log i want to set the Overwite option for the Log programmatically. i.e i just want to set the property of the Log to...
  16. arunglobal

    DataGrid Sorting with comma Delimeter

    Hi Guys, Iam Filling a datagrid with dataTable. Data Table has Numeric Values. I Just want to format my Numeric Values with comma. i.e dr(rowindex) = Format(prdtsum, "###,###,###,###,###,###,##0") Its working Fine. Numeric values are formatted bu comma delimeter. But Data Grid Sorting is...
  17. arunglobal

    Reg. Hiding Sub reports

    Application - VB.NET Crystal reports - 8.0
  18. arunglobal

    Reg. Hiding Sub reports

    In my application iam having a main report and 5 subreports for that ....report is working fine..but i dont want to display the subreport to displayed in a separate TAB when v click on the subreport..... can u help me....
  19. arunglobal

    DYNAMIC CONNECTION to CRYTAL REPORT in VB.NET

    Chaning the Database dynamically For. eg. Based on the login of my Application databse of SQLSERVER2000 or Oracle connection should be made to report
  20. arunglobal

    DYNAMIC CONNECTION to CRYTAL REPORT in VB.NET

    How to make dymanic connection for reports?.....in VB.NET

Part and Inventory Search

Back
Top