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 John Tel 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. 2xhelix

    Web Config Impersonate

    After using Impersonate and specifying an account in the webconfig, is it possible in the actual code to retrive the user information BEFORE the impersonation? Example User is Bob ConfigFile says to impersonate after authentication to the DatabaseUser. now i want to get Bob back out in the...
  2. 2xhelix

    OnSortCommand example using VB or C# required

    Nope, that won't work. OnSortCommand is protected. Also, the OnSorCommand event handler is located on the .aspx page. Sub Page_Load(sender as Object, e as EventArgs) rptID = Cint(RTrim(Request.QueryString("id"))) NewView = New DataViewer(SortField, rptID,ItemReportDG) If Not IsPostBack...
  3. 2xhelix

    OnSortCommand example using VB or C# required

    I am trying to specify the OnSortCommand <ASP:DataGrid runat="server" id="ItemReportDG" OnSortCommand="ItemReportDG_Sort"></ASP:DataGrid> I know this will run Sub ItemReportDG_Sort(sender As Object, e As DataGridSortCommandEventArgs) ... ... End Sub Here is the trick that I can't seem to...
  4. 2xhelix

    Formatting DataGrid using VB code

    I was actually attempting to do this in VB code .. but I found out how to do it. MyDataGrid.HeaderStyle.BackColor = Color.FromArgb(204, 204, 255) MyDataGrid.BackColor = Color.White MyDataGrid.BorderColor = Color.Black MyDataGrid.CellPadding = 3...
  5. 2xhelix

    Formatting DataGrid using VB code

    I am trying, but getting no where. I have a DataGrid object, that will be passed back to the .aspx page. But I want to set all the formating in code. Can someone show me an example on how to apply a headerstyle, footer style, ect ect ... Also, how would I ad a boundedColumns to the data...
  6. 2xhelix

    Using Namespace inside my project

    Hi everyone I made a project, and created a namespace Namespace DataTools Public Class DataViewer ... ... ... ... One of my functions returns a data grid Public Function getGrid() ... ... Return MyDataGrid End Function On my aspx file I have Dim Dtview...
  7. 2xhelix

    T-SQL Trying to build a dynamic Query

    I am trying to build a dynamic report. I have several Stored procedure, that currently return "ItemNumber","Information" Every user has a different configuration for thier report. So maybe User1, uses SP1,SP4,SP5 .. and User2 uses Sp2,Sp4,Sp6 How would i join together the Stored Procedures...
  8. 2xhelix

    How to write a Telnet Client in VB.NET

    Thanks, I will try to use some of this code today. What about the cursor location from the system? Even if i am able to properly display the telnet session, do you have any clue on how I would manipulate the cursor?
  9. 2xhelix

    How to write a Telnet Client in VB.NET

    So far, I have been able to connect to the telnet server, however, the data the comes back looks like RichTextBox1Attempting connection to host... Connected to server. }'}[?3l[?7h[?3l[?7h   Sign On   System . . ...

Part and Inventory Search

Back
Top