| P2P::System.Net.Peer2Peer error (VIP replies) |
| microsoft.public.dotnet.academic |
| Hi! I have been installed Longhorn, alfa version from PDC 2003. I tryed to install Visual Studio 8.0 "Whidbey", version Beta March 2004, under Longhorn and doesen't work. :( I instaled Whidbey under XP and works well. In .Net Framework 1.2 from Longhorn there is a namespace called System.Net.PeerToPeer in \Windows\Microsoft.Net\Windows\v6.0.4030\System.Net.PeerToPeer.dll Whidbey come with .Net Fra... |
|
| P2P::System.Net.Peer2Peer error (VIP replies) |
| microsoft.public.dotnet.general |
| Hi! I have been installed Longhorn, alfa version from PDC 2003. I tryed to install Visual Studio 8.0 "Whidbey", version Beta March 2004, under Longhorn and doesen't work. :( I instaled Whidbey under XP and works well. In .Net Framework 1.2 from Longhorn there is a namespace called System.Net.PeerToPeer in \Windows\Microsoft.Net\Windows\v6.0.4030\System.Net.PeerToPeer.dll Whidbey come with .Net Fra... |
|
| P2P::System.Net.Peer2Peer error (VIP replies) |
| microsoft.public.dotnet.framework |
| Hi! I have been installed Longhorn, alfa version from PDC 2003. I tryed to install Visual Studio 8.0 "Whidbey", version Beta March 2004, under Longhorn and doesen't work. :( I instaled Whidbey under XP and works well. In .Net Framework 1.2 from Longhorn there is a namespace called System.Net.PeerToPeer in \Windows\Microsoft.Net\Windows\v6.0.4030\System.Net.PeerToPeer.dll Whidbey come with .Net Fra... |
|
| Page context (VIP replies) |
| microsoft.public.dotnet.framework |
| I want to maintain page context between pages. Search Edit back to Search w/last search there and some variants The thing is I also want people to be able to hit Control N for a new window and get a new search. I'd also like to be able to use the foward and backward navigation. So far I've been able to do the following: I can create a function key, pass it on the URL, pick up the values from the u... |
|
| Page displays different based on drop-down list (VIP replies) |
| microsoft.public.dotnet.general |
| All, I have a page that there is a drop down list box on the top. There should be different controls displayed according to user selection on the drop down list. That means the controls display dynamically. Thanks, Amy. |
|
| Page faults (VIP replies) |
| microsoft.public.dotnet.framework.performance |
| Hi, We are experiencing a huge page faults and virtual memory in task manager after working a few hours with an application developed by VB.NET uses web services . This causes an extremely slow down in the application respond. Any way I could control this problem? I called the following method in a few places to control the memory. Is this may cause the problem the page faults and virtual memory t... |
|
| Page inheritance detaches validation script (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webcontrols |
| I have a web form which has a textbox, required field validator, and a submit button. If the web form inherits from System.Web.UI.Page everything works as expected. If you leave the textbox blank and click on the button, the client side validation code runs, displays the error text and prevents the postback. If the page inherits from a intermediate class the validation code does not run. The inter... |
|
| Page Load called twice! (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, Hmmm, a strange one for me, but hopefully not for others... I have a base page which has virtual protected void PageLoadEvent(object sender, System.EventArgs e){} In the Page Load method I call this PageLoadEvent(sender, e); In all the forms that inherit from it I have a protected override of PageLoadEvent method which does the necessary for that particular form, nothing too complex there, wha... |
|
| Page Load event fires twice (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, I have a BasePage class from which all other ASPX pages of the project is inherited. The BasePage class implements Page Load event handler. All child pages have its AutoEventWireUp property set to false. I have included the code used to create the BasePage and one of the child pages below. // Class BasePage public class BasePage : Page { // To be overriden by child web pages to intialize page ... |
|
| Page Setup dialog box does NOT remember settings ! (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi, I'm using the page setup dialog box as follows : Imports System.Drawing.Printing Public Class Form1 : Inherits System.Windows.Forms.Form Dim m pageSettings As PageSettings Private Sub btnPageSetup Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPageSetup.Click Dim pagesetupDlg As New PageSetupDialog If m pageSettings Is Nothing Then m pageSettings New PageSettings ... |
|
| Page title in ASP.NET pages (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hello, For displaying page titles for my ASP.NET applications I use the following technique: title % BannerModule.PageTitle% /title where BannerModule.PageTitle is a public field of my user control. This field is initialized in Page Load of every my page. This technique works with the exception that the title disappears every time a page is posted back. Could somebody explain me the reason, or sug... |
|
| Page_Init vs. OnInit (VIP replies) |
| ASPFriends.com 'aspngibuyspy' list |
| The IBuySpy contains... Page.Init new System.EventHandler(Page Init); It also has... private void Page Init(object sender, EventArgs e) { InitializeComponent(); } Further down is... private void InitializeComponent() { this.Load new System.EventHandler(this.Page Load); } What is the difference from Visual Studio .NET's default of... override protected void OnInit(EventArgs e) { InitializeComponent... |
|
| Page_Load (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, Why in the following page, word ABC is being appear twice? Thanks, Ali %@ Page % HTML HEAD title test /title script language "vb" runat "server" Private Sub Page Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Not Me.IsPostback Then Response.Write("ABC" " br " ) end if End Sub /script /HTML |
|
| Page_Load (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, Why in the following page, word ABC is being appear twice? Thanks, Ali %@ Page % HTML HEAD title test /title script language "vb" runat "server" Private Sub Page Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Not Me.IsPostback Then Response.Write("ABC" " br " ) end if End Sub /script /HTML |
|
| Page_Load event not fired (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Some pages (not all the pages, but I can't observe differences) opened from javascript via window.showModalDialog() doesn't fire the codebehind Page Load event the second (and further) time it is opened from the same window. If I change the IE configuration of the temporary internet files to check new versions every time the page is called then the event is fired. However it is not an acceptable s... |
|
| Page_Load no use? (VIP replies) |
| ASPFriends.com 'aspngfreeforall' list |
| This is a multi part message in MIME format. InterScan NT MIME Boundary Content Type: multipart/alternative; boundary " NextPart 000 000A 01C2145C.724E3530" NextPart 000 000A 01C2145C.724E3530 Content Type: text/plain; charset "big5" Content Transfer Encoding: quoted printable Hi,all bellow is my aspx page,when it been load,but the event Page Load didn't been handle! why? is that for my index.aspx... |
|
| PageIndexChanged event not firing when unbound (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.datagridcontrol |
| I have what I thought was a great object oriented approach to building a search page, but the PageIndexChanged event is not firing making is not so great. I have a aspx page with 2 user web controls: a search control (contains the search fields) and a search results grid that includes a datagrid. The explicit event chain when the page first loads is: Page.Page Load SearchControl.Search (uses the p... |
|
| Paging DataGrid Checkbox Persistence (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Have a paging datagrid with a checkbox control in column(0). ViewState is enabled. I check the checkbox in first row of the grid on a page and then the program hits this event: Private Sub dgRegGrid PageIndexChanged(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridPageChangedEventArgs) Handles dgRegGrid.PageIndexChanged I then do a loop to check the checkbox state. For i 0 To d... |
|
| Paging error. (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.datagridcontrol |
| I am relatively new to all of this and I am encountering a annoying problem. I have a datagrid of data that I want to page through. I am using numeric pages and can ascend the pages 1,2,3, etc fine. Its when I get to the last page, which has fewer items that all of the rest. As soon as I hit the last page, let's say, page 3 in this example, is when I run into the problem. Pages 1 and 2 have 6 item... |
|
| PaintEventArgs what do i use for e in this code? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| This Button1 Click will call the DrawarcFloat sub what do I use for arguments for the call? Private Sub Button1 Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click call DrawArcFloat(What goes here?) End Sub Public Sub DrawArcFloat(ByVal e As PaintEventArgs) ' Create pen. Dim blackPen As New Pen(Color.Black, 3) ' Create coordinates of rectangle to bound ellipse. ... |
|
| Painting MDI Form (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi Does anyone know a method to paint a gradient background to an MDI Container? I tried to use the Blend Control from VBPowerPack but each MDI Child will be shown behind that control. I tried BringToFront() or SendToBack() but have no results. Now im searching for a method to paint a gradient background to that MDI form. This gradient must be repainted if the user changed the MDI Container size. ... |
|
| Painting when Button gets klicked (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I want to paint some bars, as soon as a button get klicked. My Paint Method has this signature: Private Sub PaintChart(ByVal sender As Object, ByVal e As PaintEventArgs, ByVal insolvent As Decimal, ByVal days30 As Decimal, ByVal days60 As Decimal, ByVal days90 As Decimal, ByVal current As Decimal) Means it needs to get a PaintEventArgs to work. My Button Click Method has this signature: Private Su... |
|
| Panel and dymanic table (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.datagridcontrol |
| On a run time I am generating a table inside a panel. The table alsways generated to the left and I wanted to be in canter of the panel. How do I find the center of the panel and add the table? |
|
| Panel and MouseEnter / MouseLeave (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi, I have a panel on my form. I want to detect when the user enters my panel with his mouse and when he leaves my panel. If the user hovers a control inside my panel, I get the mouseleave, which is understandable. But how do I make the MouseLeave event fire only when the user moves the cursor outside the panel and not when he hovers child controls of the panel? Thanks in advance! M O J O |
|
| Panel Bordercolor (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hello, I am having an issue with changing the bordercolor of the panel control. I have got to a point where I have created my own control and inherited the Panel control, then in the Overrides Sub OnPaint I draw a rectangle. My code below. The problem I am having is when the new control is resized the border lines are being redrawn over an over again. I guess that makes sense. But how do I clear w... |
|