| .Invoke doesn't always return (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| To avoid a temporarily frozen user interface, I'm using a separate thread to fill a list with items found in a database (there can be from a few up to about 1000 or 1500 items). There seems to be a problem in this: if the form containing the list is closed before the worker thread has finished, the Invoke call used to add entries to the list never returns. I'm trying to avoid it in any way I can i... |
|
| .NET , XML , XSL -> XsltArgumentList : Question ? (VIP replies) |
| microsoft.public.dotnet.xml |
| Hello, I have a page in .net (DEFAULT.ASPX), i load a XmlDocument, and a XslTransform to Add a XsltArgumentList (with the param : urlPage), and send all to a asp:xml in the page. The asp:xml is good with xml and xsl, but the param is not fill with the value ? Do you have a solution ??? Thanx DEFAULT.ASPX : script language "C#" runat "server" private void Page Load(object sender, System.EventArgs e... |
|
| .net CF bug? code crashes emulator & device but runs fine in full (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| I've been having problems with Socket communication between a server application, running on a desktop machine, and a client, running on the .net CF on PocketPC. I think I've traced the problem to an underlying problem with the .net CF. The following code runs fine on the full .net framework (I've compiled it under 2 projects, one for device app, one for full .net app); every second another "data"... |
|
| .Net CF Web Service (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Is it possible to use .Net Compact Framework to consume web services that implemented cookieless session? I've surfed the web to find out the solution for a few weeks. I can only get some examples that consume sessionless web service. Can anyone give me some sample code or references? Thank you very much! |
|
| .NET Consumer sending SOAP request to a Web Serivce on Axis/Apache returns only the first tag (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| If I hit the web service hosted on Axis/Apache server from .NET by the usual route; get WSDL, create proxy, call from a ASP.NET. A method of the WS is supposed to return a XML with data, however, the string the Web Method is returning is only the value of first element HRMErrorText in the SOAP response. However, if I hit the WS using a standalone tool that can send SOAP request, it returns all the... |
|
| .net error when sending emails (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Has any1 else had this error message. If so how do u solve it? The specified module could not be found. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.IO.FileNotFoundException: The specified module could not be found. Sourc... |
|
| .NET Framework 1.1 sp1 breaks our application! (VIP replies) |
| microsoft.public.dotnet.framework |
| We're having problems with events from a Windows Forms Control embedded in a web page not firing in javascript after installing sp1 of the .net 1.1 framework. I have de installed SP1 and can confirm that the problem is solved by reverting to the original 1.1 framework. For some background on sinking events in IE script, read the following: http://support.microsoft.com/default.aspx?scid kb;en us;31... |
|
| .Net Loophole? (by way of delegates) (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| Question for all: Would one consider this a loophole in .net with respect to nested (inner) classes? 1) Create outer class Foo and create a nested class Yin (inside Foo's class definition ofcourse). 2) Let Foo have non static protected (or public) method Bar() and Yin have a non static method called Yang(). 4) Add a member object to Foo of Class Yin called yinObj. 5) Create an Object of Class Foo ... |
|
| .net Remoting (System.net.WebException) (VIP replies) |
| microsoft.public.dotnet.distributed_apps |
| Hi All I am using a chating application in which Server is Console based application and Client is Windows Based Application,when i am running both server aznd Client same System it's working Fine but when i am putting Client and Server on different system's the i am getting below error. An unhandled exception of type 'System.Net.WebException' occurred in mscorlib.dll Additional information: The r... |
|
| .net textbox what is correct event to use. (VIP replies) |
| microsoft.public.dotnet.general |
| When a user changes the text in a textbox i wish to update the registry key it represents. If I use event TextChanged event then as you type every character in your update the registry routines are called. If I use Validated Event then if you click on the text box or tab past it and not change the text the registry is refreshed. Is there an event that represents "I have changed this text and I hav... |
|
| <a... <img..>> in a <td> from code-behind... this can't be that hard (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Okay I'm spinning my wheels on this one... can someone help me figure out how to programmatically populate a table cell as follows (from C# code behind)? I've tried using a Literal control in the TableCell, a HyperLink control, and an Image, but I'm not getting the results I want. Here's the source of what I'm after (retrieved by viewing the source of a page I'm trying to emulate): td a href "MyPa... |
|
| <customerrors> section - find exception details? (VIP replies) |
| ASPFriends.com 'aspngconfig' list |
| Is there a way to configure a default error page AND determine the details of the exception that caused the redirection to that error page? In ASP 3.0, I could setup a custom error page in IIS, then use the Server.GetLastError property in my error page to get an ASPError object with a whole bunch of useful information. I havn't seen anything like this in any of the docs for ASP.NET, but this seems... |
|
| <do prev> (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.mobile |
| Hi, When i try to navigate between two pages and want to activate a particular form it fails : NavigateUrl wap.aspx#form2 How do you do this ? Is this possible to render the prev anchor ? Regards Biggir |
|
| <enter> key and form submit (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, I have a web form which has: Login area with email textbox password textbox enter button to log in search area with string to search for textbox search button How can I make this work so that when a user presses Enter in: 1) either email or password textbox, I can handle the log in function which happens on the enter button Click() event 2) search textbox, the search button Click() event happe... |
|
| ? about DataColumn (VIP replies) |
| microsoft.public.dotnet.languages.vb.data |
| I'm reading F. Scott Barker's book titled "Database Programming with Visual Basic.NET and ADO.NET Tips, Tutorials, and Code" and an example sub is below Private Sub frmHowTo3 3 Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim strSQl As String Dim dc(1) As DataColumn Try modaCust New OleDb.OleDbDataAdapter("select * from Customers", (BuildCnnStr("(local)", "Northwin... |
|
| _load (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| hi Why i can't have "hello" in my other sub ..??? the load is "public " !! Public sub menu Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim myString as string "hello" end Sub Private Sub PictureBox4 Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox4.Click label1.text myString End Sub Ceci est une signature automatique de Me... |
|
| “Dialup Connectivity”in .Net (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| Hi :idea: , I am looking for some input on Dialup Connectivity in .Net My scenario being I will have a config file containing the parameters required for modem connection like the phone number, data bit, baud rate, etc. Here I have instantiate the connection and send a string to the server (machine I connect to) and where I will receive a message once the string has been received. Any code and doc... |
|
| 100% CPU (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| The simple VB.NET loop: for i 1 to 30000000 ' do something next drives the CPU on my computer to 100% utilization for the duration of the loop. (Several minutes) How can I modify this loop to let other (unrelated) applications running on the same box get some CPU time? TIA, Bill |
|
| 1st combo box item selected in Form_Load after Data Bind. (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| Hi, This would seem to be a variation on a well known issue with .NET Windows Forms Combo Boxes, however, I was wondering if anyone has had any success with it in the mean time. I have a combo box which I data bind in the Form Load event. The 1st item in the data source is selected. However, for my purposes, the combo box should have no selected item. Setting the SelectedIndex property to 1 has no... |
|
| 2 combo boxes in datagrid (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| Hi All I want to add two combobox columns in my datagrid. the one combobox column must be bound to the same datasource that the datagrid is, and the other combobox I just want to populate with a whole lot of values, and then when the user selects a value, I want it to filter the possible values in the other combobox. Is this possible? Also this unbound combobox that hold the whole lot of values, I... |
|
| 2 instances of the program running (VIP replies) |
| microsoft.public.dotnet.general |
| I have created a VB.net windows forms application. If I have the program running and then I mistakenly click on my desktop icon again, I get a second instance of the program running. Is there anyway to check / prevent a second instance to startup and just take me to the already running application. (I have seen applications in the past do this... double clicking on the desktop icon just brings up ... |
|
| 2 instances of the program running (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I have created a VB.net windows forms application. If I have the program running and then I mistakenly click on my desktop icon again, I get a second instance of the program running. Is there anyway to check / prevent a second instance to startup and just take me to the already running application. (I have seen applications in the past do this... double clicking on the desktop icon just brings up ... |
|
| 200 kb - 6mb (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| Every thing is working fine but when the print command is sent to printer and you check the size of the file , it gives normally 5 to 6 mb per image . But in orginal pictures are normally 200 to 300 KB. You will see i am resizing the picture to fit in landscape area , i think this is multiplying the size of data . How do i compress it? here is the code private void menuItem1 Click(object sender, S... |
|
| 500 error when trying to do a post (VIP replies) |
| microsoft.public.dotnet.framework |
| I'm trying to do a POST using the following code, but I'm getting a 500 error. Can somebody please help me? I'm been stuck for quite a while. private void bnInvoke Click(object sender, System.EventArgs e) { string lcUrl "http://www.xmlwebservices.cc/ws/v1/calc/SimpleCalc.asmx/Add"; HttpWebRequest loHttp (HttpWebRequest) WebRequest.Create(lcUrl); // *** Send any POST data string lcPostData "a " Htt... |
|
| 500 error when trying to do a post (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| I'm trying to do a POST using the following code, but I'm getting a 500 error. Can somebody please help me? I'm been stuck for quite a while. private void bnInvoke Click(object sender, System.EventArgs e) { string lcUrl "http://www.xmlwebservices.cc/ws/v1/calc/SimpleCalc.asmx/Add"; HttpWebRequest loHttp (HttpWebRequest) WebRequest.Create(lcUrl); // *** Send any POST data string lcPostData "a " Htt... |
|