Search results for query: *

  • Users: Buho1
  • Content: Threads
  • Order by date
  1. B

    Question Display fluid standard output from console process in WinForm?

    Hi. I've been searching around the web and here for several days and haven't found a solution to my problem. I'm a veteran ASP.NET developer but I'm new to WinForms and multithreading. I'm using VS 2010 and VB.NET 4.0. I have a console application that takes minutes to hours to run. It...
  2. B

    Question Multithreaded app not handling all raised events

    This is my first excursion into multithreading. Winforms VB.NET 4.0. I want to launch about 300 threads that calculate a result, and I want these 300 results displayed in the main form, results shown as they come in. I initially wrote this, which makes sense to me: Imports System.Threading...
  3. B

    Question Authentication Cookies

    I'm converting an app from .NET 2 to .NET 4. The old app worked fine but the new one doesn't want to log in any user. I'm using Forms authentication for an ASP.NET application. I'm using the SQL Membershop provider in combination with an LDAP server. On my login page I have...
  4. B

    Referencing CustomValidator in Class Library

    Hey all. I've made a nice set of functions for my web applications. I've decided to make a class library out of it instead of copying the code to each project. What I found, however, is that the class library doesn't know what CustomValidator is. My first instinct was to write Imports...
  5. B

    Arbitrary code in ASPX?

    Hi. I seem to recall being able to put arbitrary code in the ASPX, something like this: <asp:Label id="lbl" runat="server" Text='<%# 2 + 2 %>' /> Which would render "4" between span tags. That's a trivial example, but I would really like to automatically display a session variable...
  6. B

    Moving data from Javascript to VB.NET

    Hi all. I have a very strange question, I'm not sure how to search on it (I have been searching the net for the past several hours). I have an ASP.NET label that I set the Text property to "<INPUT type=""hidden"" id=""pnlX"">50</INPUT>" Now, I also have some Javascript that gets this data...
Back
Top