| multiple where clause (VIP replies) |
| ASPFriends.com 'ngfx-sqlclient' list |
| hi guys, i need help! i need to search for users who has RoleID 2, pJobTitle to whatever the users enters to the textbox and whatever the users choose on the dropdownlist. the below code doesnt do any good, anybody pls help me on this thing. note: i think im having difficulties on quatations, both the (') and (") TIA, Ronnel Santiago Private Sub Button1 Click(ByVal sender As System.Object, ByVal e... |
|
| Multithread problems of Windows Forms (VIP replies) |
| microsoft.public.dotnet.vjsharp |
| In some case, I create a worker thread for creating another Window. With Java AWT, the idea is ok. But with .NET Windows Forms, the code below do not works. The "Form1" created by the "MyThread" is blocked(No paint). What problems is this? Thanks. ////////////////////////////////////////////////// public class Form1 extends System.Windows.Forms.Form { ..... private void button1 Click (Object sende... |
|
| multithread to richtextbox (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| hello i put a richtextbox and a button on the winForm.when the button is clicked,it generate several threads to write to the richtextbox,the code snippet as following: private void btnSend Click(object sender, System.EventArgs e) { for(int i 0;i 3;i ) { Thread thread new Thread(new ThreadStart(rpt)); thread.Start(); } } private void rpt() { this.richTextBox1.AppendText("hello world"); } it throw n... |
|
| Multithreading and Control.Invoke (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| I have a multithreaded application on iPAQ 5550 with CF 1.0 SP2. Using Invoke on a control (from another thread than the one which created the control) to let UI thread do the visual updating. The Invoke cannot take parameters (CF limitation). This is working fine if I run the same exe file on my XP machine, but on the iPAQ I get the exception "ArgumentException". Is this a bug in CF or do I use i... |
|
| Multithreading and Creating new controls (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| I'm trying to dynamically create a set controls in a Threadpool and then add them to thte Controls collection of a Form (the main thread). The controls seem to be created in the thread an get passed back successfully via an derived EventArgs class, but I get "invalid handle" error messages when trying to work them back on the main thread. I've seen a number of articles about a control being "owned... |
|
| multithreading problem (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Hi, I have a small app that uses a custom proxy to down load XML from a web service. I using the HtpWebRequest/Response objects and the Begin methods. Initially this process was started on the UI thread and everything worked ok. However I want the UI thread to create a new thread and start the request from there. The problem is that every third time I request the data, the app locks up. I have use... |
|
| MustInherit base class inherited by UserControl (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.buildingcontrols |
| Following on from this discussion http://www.dotnet247.com/247reference/msgs/29/146830.aspx i'm having the same problem, the classes that i think should work but are throwing up the "type abstract" error are: ######################################## base class: ######################################## Public MustInherit Class ControlBase Inherits System.Web.UI.UserControl End Class ###############... |
|
| MVP please help - List box horizontal scroll bar (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| I have a list box that uses the horizontal scroll bar. I would like to be able to "scroll" my headings at the top of the list box when the list box is scrolled. Spy reveals that this is not a real scroll bar (hwnd always null), so I can't see how to find out when, and how much, the list box is scrolled. If I create my own scroll bar, I have trouble keeping the display smooth. The best I can seem t... |
|
| My ASP.Net files dont work (VIP replies) |
| microsoft.public.dotnet.academic |
| I have windows xp professional as my OS , IIS 5.5 installed Now when later I installed ASP.NET then my aspx.net files dont work.In the sense only HTML part is displayed but vb script(dot net) part does not get displayed. For Example following is the timedisplay.aspx code %@ Page Language "vb" AutoEventWireup "false" Codebehind "TimeDisplay.aspx.vb" Inherits "Diary.TimeDisplay"% !DOCTYPE HTML PUBLI... |
|
| My New Company: Janky A## Solutions, Inc. applications now being accepted. (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Alright before I get started, first of all, this is a help article. I'm just shocked I didn't think of a solution or couldn't find one on the web at all. So I figured I would write a quick blurb on here, in someone wants to post it on there blog so it can be spidered, feel free. I don't have one yet, should probably set one up. Alright... Now I brought this issue up a few weeks ago and kinda put i... |
|
| MyDataGrid_LostFocus (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I have a datagrid loaded from an Access table. The user can edit information in the datagrid, when finished, the program will update the table. The question is how to know it's finished. 'LostFocus' does not work well. For example, every time I click on a cell inside the datagrid, the datagrid lost focus. Please advise. Thanks. |
|
| Namespace not found (VIP replies) |
| ASPFriends.com 'aspngvs' list |
| Moved from [aspngvb] to [aspngvs] by Bob Levittan blevittan@hotmail.com Moved from [aspngarchitecture] to [aspngvb] by Running 10d bbilbro@hotmail.com Hello, I hope this is the correct listserv for this question. Using VB.Net and trying to build an Data Access Class here is the simple class code: Imports System Imports System.Data.OleDb Namespace DataAccess Public Class DataAccess Function dbStrin... |
|
| NameValueCollection (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hello all, My application does Credit Card authorization. The service I'm using returns it results in a QueryString type format, (ex. Result 0&Code 1&..."). I would like to throw this into a NameValueCollection for easy access to the results. My question is, is there an easy way to do this or must I parse out the resulting string and manually add the Name Value pairs to the collection? Thanks, Ste... |
|
| navigate between forms (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Win app vs vb .net xp pro I have 2 forms forma and formb how do I show formb from a button on forma. kinda like response.redirect ("formb") equivilent for win app. Thanks |
|
| Nedd Help On trying to get BabelFish web service to run (VIP replies) |
| ASPFriends.com 'aspngxml' list |
| I am at this point now with this error occuring Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0246: The type or namespace name 'BabelFish' could not be found (are you missing a using directive or an assembly reference?) Sour... |
|
| need algorithm to make sure only one datagrid row is checked (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I have a column called "DefaultYN" in a resultset. It appears as a boolColumn. What I'd like to do is to ensure that only one row at a time can be selected as the "Default" row. Unfortunately, I can't figure out 1. How to figure out that the checkbox has been checked 2. How to check the other rows to see if they're checked Should I do this with the grid itself? Or with the underlying datasource? T... |
|
| need component for asp page that genereates custom lettering in a jpg (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| similar to: http://overtons.com/lettering/lettering.html I was thinking of writing it myself in either vb6 as an activex dll server component, or vb.net it does seem more feasable to me in vb .net, but it would also be great if this was already done. Any information appreciated. Scott Emick semick@ham.phoenix sys.com to send me an email, remove the 'ham' if its not spam. |
|
| Need Example; Test to see if regkey/value exists (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| I've been playing with the RegistryKey class in the Microsoft.Win32 namespace. I can do various things but I can't seem to get the syntax correct to see if a value or a key exsists. I know I need to use the GetValue & OpenSubKey methods I've been trying variations on these methods with no luck. Can someone give me a working example? This is my latest (failed) attempt string sKey @"\Software\Micros... |
|
| Need hel Updating DataGrid to data base on Pocket PC! (got Strange error) (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| I'm doing a task that is supposed to retrieve data from data base and then displays it on a datagrid control, the user could modify the data and then I try to update the data base with the modification.. I get an SQLce exption " could not pars the query", knowing that this same statement some times work!! I cant find where is my error!! Here is a portion of the code which the data base should be u... |
|
| Need help converting C# code to VB.NET code... (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I downloaded a web timer control from http://www.eggheadcafe.com/articles/20021006.asp and it's written in C#. The code and .DLL comes with the download so I'm trying to convert the sample which was written in C# to VB (ASP.NET). Here is the following code in the Default.aspx page... private void PgTimer1 Elapsed(object sender, System.EventArgs e) { if (Application["PgTimer"] null) { Application["... |
|
| Need help exdending custom control. THANK YOU! (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.buildingcontrols |
| Hi, I created the following custom control to open a form in a new window. All this control does is to write a JavaScript link. Additionally I'd like to react on a MouseClick made on the control. How can I do this? ' This is the control by now... ' *********************************************************************** Imports System.ComponentModel Imports System.Web.UI Imports System.Text Imports... |
|
| Need help updating access db (VIP replies) |
| microsoft.public.dotnet.general |
| I new to ASP.net and am using the following code to attempt to update an Access 2000 mdb. The code does make it through the code following "try". NO rows are updated. There is a row with the work id of 1343. What Am I missing? Your help is appreciated. Irvin Amoraal. %@ Page Language "VB" Debug "true" % %@ import Namespace "System.Data" % %@ import Namespace "System.Data.OleDb" % script runat "ser... |
|
| Need help with debugging IEExec (VIP replies) |
| microsoft.public.vsnet.debugging |
| I have an application that is resident on a web server and it is started by http://web/directory/application.exe. This has been working. It uses a remote object hosted within the same copy of IIS. This has been working. Today, I added some new methods to the remote object. They are not working. I can remotely debug W3WP and see the call to the new method and the value that it attempts to return. T... |
|
| Need help with event usercontrol event not fired (VIP replies) |
| microsoft.public.dotnet.languages.vb.controls |
| Hi, I've a user control that innherits from System.Windows.Forms.UserControl with a Label control on it. The only code so far in the user control is on the Label MouseMove event, I change the backcolor of the label. What I want to understand is why if I click on the user control on the label space the click event does not fire, but if I click on an empty place on the user control the event work. S... |
|
| Need Help with Form Instancing (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi All, Coming from VB6, there was a bit of a difference in the way you display a form, I Thought I'd nailed instanciating a form, but I'm quite stuck with something that doesn't make sense. my main form has an event handler that instanciates a small popup form each time it fires, the code inside the handler is: Dim f As New frmInfoPopup f.Show() as soon as the End Sub of the handler is reached, i... |
|