| asp:Table DataBind method? (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| I have asp:Table... /asp:Table on my webform. In codebehind, I populate a DataTable whose data should appear in the asp:Table. I created my own code to populate the asp:Table with the DataTable, then I discovered the asp:Table has a DataBind method. But the method takes no args and so I'm confused how to use it. Is there a link to see how DataBind works for asp:Table? Should I just use my own code... |
|
| ASPNET write to event logs (VIP replies) |
| ASPFriends.com 'aspngvs' list |
| I'm trying to write to the windows event log, and it's failing because APSNET doesn't have rights. What do I have to give to ASPNET to allow this? I'm not sure what file exactly contains the registry or if just giving access to that file is enough. Anyone? Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. |
|
| ASPX page, outputting XML. (VIP replies) |
| ASPFriends.com 'aspngxml' list |
| Moved from [aspngcommunity] to [aspngxml] by darthcarroll@asplists.com Hello, I'd like to create an ASPX page that returns XML. I can do this in ASP 2/3 by setting contentType to text/xml, and then response.write outputting all the ?xml version "1.0"? information afterwards. In ASP.NET, I'm having difficulties because Visual Studio is 'helpfully' re inserting the IE 5.0 schema and doctypes when I ... |
|
| assign a 'MainMenu' to a Form on the Fly (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| hi i need assign( on the fly ) a object of class 'MainMenu' to a Form, by example, in a form with various 'button', when the user push the button1 i want assign a 'MainMenu' to the form, if the user push the button2 i want assign other object of class 'MainMenu' to the form. i have try the next code: class MyForm : Form { private MainMenu1 oMenu1 private MainMenu2 oMenu2 private Button oButton1 pr... |
|
| assign value to a text box (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| i have the code below: for starters the value of txtempid 1 after i go through this routine (i put a break point on the txtname.value line), the value of txtEmpID is 2 (Just like it is suppose to be) However, when i come into this function again, txtEmpID 1 again For some reason the txtEmpID.value isn't retaining its actual value of 2 any ideas? Try Dim row As DataRow ds.Tables("TestTable").Select... |
|
| Assigning DialogResult won't always close the form (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Hi all, I have a form that is shown modally under some circumstances, non modally otherwise. Assigning the DialogResult in modal state will usually close the form, UNLESS the user clicked the x Button the last time the form was shown non modally. Probably the behavior depends on the way forms get reused or not, so here's a simple example showing my problem: Form1 with 2 buttons, one "ShowDialog", ... |
|
| Assistance with datagrid required (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| I have a simple SQL query that is executed when a command button is clicked. This populates a datagrid and is working fine. I have three radio buttons on the same form and when one of the radio buttons is CHECKED and the command button is pressed, a different query is executed, but the returned records are appended to the first record set. I would like to clear the contents of the datagrid when th... |
|
| Async DIME call seem to drop randomly (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I have a web service using WSE 1.0SP DIME attachment to transfer files in production. The synchronous call works great and pretty stable. I have been trying to add the asyncrhonous calls. On the surface it works but then I realized that when multiple async calls are made to the server in a loop, some callbacks never happen (no exception either). Here's a piece of simplified test code on the client... |
|
| Async DIME call seem to drop randomly (VIP replies) |
| microsoft.public.dotnet.framework.webservices |
| I have a web service using WSE 1.0SP DIME attachment to transfer files in production. The synchronous call works great and pretty stable. I have been trying to add the asyncrhonous calls. On the surface it works but then I realized that when multiple async calls are made to the server in a loop, some callbacks never happen (no exception either). Here's a piece of simplified test code on the client... |
|
| Async DIME call seem to drop randomly (VIP replies) |
| microsoft.public.dotnet.framework.webservices.enhancements |
| I have a web service using WSE 1.0SP DIME attachment to transfer files in production. The synchronous call works great and pretty stable. I have been trying to add the asyncrhonous calls. On the surface it works but then I realized that when multiple async calls are made to the server in a loop, some callbacks never happen (no exception either). Here's a piece of simplified test code on the client... |
|
| async http upload (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Hi, below is the code I sort of adapted from an async http download example I found so that I could upload files to the server. It seems to be doing it asynchronously and the file makes it to the server but it is going all in one shot. How can trap it at every 1024 bytes to trigger an event like progress bar advance as it does in the download version of this code? When the code calls back uReadCal... |
|
| Asynchronous Callback Not Updating Web Page? (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hello, I am making an asynchronous call to a webservice and trying to update the web page with the results. The page is not updating. Does anybody know why??? Below is my code: public class ASPNetSuperhero : System.Web.UI.Page { protected System.Web.UI.WebControls.DropDownList drplstFilePaths; protected System.Web.UI.WebControls.TextBox txtMessage; protected System.Web.UI.WebControls.Button btnSta... |
|
| Asynchronous Callback Not Updating Web Page? (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hello, I am making an asynchronous call to a webservice and trying to update the web page with the results. The page is not updating. Does anybody know why??? Below is my code: public class ASPNetSuperhero : System.Web.UI.Page { protected System.Web.UI.WebControls.DropDownList drplstFilePaths; protected System.Web.UI.WebControls.TextBox txtMessage; protected System.Web.UI.WebControls.Button btnSta... |
|
| Asynchronous Socket BUG - System.Net.Sockets.OverlappedAsyncResult.CompletionPortCallback (VIP replies) |
| microsoft.public.dotnet.framework.performance |
| I have a client and server which communicate via ascynchronous sockets. If I am sending a large file from the client to the server and I just kill the client app during mid transfer (either by closing the form or just killing the process) the server then kicks up an untrappable error in "System.Net.Sockets.OverlappedAsyncResult.CompletionPortCallback". This error cannot be caught by try..catch and... |
|
| Asynchronous web methods (VIP replies) |
| microsoft.public.dotnet.general |
| Hi I am using the articles by Matt Powell about server side asynchronous web methods (as well as the client side article). However i dont see any improvements to the speed of my application. I'm experiencing the slow speed on the server side. I read that using a delegate to call an asynchronous method would be ineffecient and maybe causing the problem. Can someone give me some advice on what i can... |
|
| Asynchronous web service (VIP replies) |
| microsoft.public.dotnet.framework.webservices |
| Let's suppose we have a client application, pushing a button we call a webmethod asynchronously and inside the callback function we manage the operation result. Something like this for instance: private void button Click(object sender, System.EventArgs e) { Service1 s new Service1(); AsyncCallback cb new AsyncCallback(this.HelloCallback); IAsyncResult ar s.BeginHello(textBox1.Text, cb, s); } priva... |
|
| Attach process (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi there, I am trying to develop a small menu application to run on an RF network, we are using a wavelink server to communicate with our rf scanners and run VB.NET applications on our server that repond to the scanner requests. I would like to know if there is a way that I can spawn a process on the server and attach it to the current thread (allow it to take control of the server requests)? Once... |
|
| Audio APIs (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Does anyone know what audio APIs are supported within .NET CF and how I can access them to either play an audio clip or a system sound such as a bell? Thanks. sanjay |
|
| auto fire of items events on initilization (check/radio buttons) (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| How can you stop the check changed event from fireing during the initilization of a form? I have about 4 radio and check boxes on the form, and when the form is initilizing, the one that is marked as checked during the initilization (when InitializeComponent is called) always fires it's check changed event, which I don't want it do to.. how can you prevent this? thanks |
|
| auto incr (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| hi i have created a dataset manually. is ther any way to have auto increment in it? |
|
| Auto mailer (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, i am trying to send an automated mail at a particular time of the day from the web site. below is the code i tried. but the mail is not sent. Can anyone throw some light on the issue. Thanks. Sub Application Start(ByVal sender As Object, ByVal e As EventArgs) ' Fires when the application is started mTimer.Interval 10000 mTimer.Enabled True AddHandler mTimer.Elapsed, AddressOf mTimer Elapsed En... |
|
| Auto scroll (VIP replies) |
| microsoft.public.dotnet.framework |
| Hi Ive got a custom usercontrol that has the autoscroll property enabled so that the scroll bars appear when the control is smaller that what it's containing. Is is possible to get an event notification for when the user moved the scroll bars. I know you can do this with scroll bars from the toolbox but can you with autoscroll scroll bars. Cheers Steve |
|
| Automate Excel from VS.NET (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I am trying to design an application in Visual Studio that will allow a user to select a spreadsheet, pass in some parameters, and run macros in the spreadsheet that depend on the parameters. I was able to do this pretty easily with Access, but I want it to be a standalone app so I'm trying to do it in VB.NET (I am a VS.NET newbie) So far my code seems to work fine, until I try to execute the macr... |
|
| Automate Excel from VS.NET (VIP replies) |
| microsoft.public.vsnet.vstools.office |
| I am trying to design an application in Visual Studio that will allow a user to select a spreadsheet, pass in some parameters, and run macros in the spreadsheet that depend on the parameters. I was able to do this pretty easily with Access, but I want it to be a standalone app so I'm trying to do it in VB.NET (I am a VS.NET newbie) So far my code seems to work fine, until I try to execute the macr... |
|
| Automating dialog with web server from VB.NET (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I am attempting to programatically drive a Lotus Notes web application from a VB.NET database application (who wants to rekey information in one database into someone else's web page for entry to theirs?). I am using the System.Net.WebClient to communicate with the LotusNotes server. It is not clear if I should be instantiating a new object for each communication, or persisting the initial one. ba... |
|