| count lines of text (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I need to limit multiline textbox to 3 lines of text and if there are less then 3 lines when leaving, add empty line holders. How can I do this?? Thanks, paul |
|
| Counting (VIP replies) |
| ASPFriends.com 'aspngdatagridrepeaterdatalist' list |
| !DOCTYPE HTML PUBLIC " //W3C//DTD HTML 3.2//EN" HTML HEAD META HTTP EQUIV 3D"Content Type" CONTENT 3D"text/html; charset 3Dus ascii" META NAME 3D"Generator" CONTENT 3D"MS Exchange Server version 5.5.2652.35" TITLE Counting /TITLE /HEAD BODY P FONT SIZE 3D2 IF I bind my data to my drop down in my editable drop down like this. /FONT /P P FONT SIZE 3D2 Client 3D CType(e.Item.Cells(3).Controls(1), Dro... |
|
| Counting Rows in DataGrid (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.controls |
| Hi, I want to count rows in DataGrid. I've known "VisibleRowCount" property ,but it count olny visible rows.How to quick count all rows in DataGrid control ? int i dataGridNews VisibleRowCount; String* msg String::Format(S"Number of Rows :{0}", i.ToString()); MessageBox::Show(msg); |
|
| Counting times a control is clicked. (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Can anyone tell me if there's a way to return the amount of times a button is "clicked" I need to change text in a text box and that text changes each time the button is clicked up to 6 times with 6 different text values. Thanks in anticipation. Al@n |
|
| couple Input Panel Questions (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Hi, I'm implementing an InputPanel in one of my Smart Device projects. I want to be ablt for an user to select a letter with the InputPanel. I placed one in my project (with a mainmenu) and its always visible, so no problem there. I placed a button in my form, my intention was to press the buton and then the InputPanel would expand automatically. I tried using InputPanel1.Enabled true; but that ai... |
|
| Create a <table> of <textarea>s (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| I have an ArrayList of data gathered from a database. I want to create a web page from this data by creating a table , each cell in each row displays the appropriate data. One of those cells in each row needs a textarea control. The background supporting classes are completed, the only task left now is to create the web page. I am at a loss on how to create the table in the page populated by the d... |
|
| Create a new object in a method and pass it back by ref (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| Hi Folks If I create a new instance of an object within a method how can I pass it back by reference? For example, the following code, in the context of an ASP.NET page, returns "Original Label". Why not "New Label"? I realise I could give CreateSomething a return type of Label and return it that way but in my case I have more than one parameter that could need reinstancing. Thanks, Al. private vo... |
|
| Create a SQL Database or Tables in SQL Database using VB.net (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hello everyone, My program will collect a testing machine's data ,save the data and deal with the data everyday. I want to use vb.net to create database, add and delete tables or modify the records in the database. Is it possible to create a SQL Server database using vb.net? I know I can use vb.net and ADOX to create a Access database. But I can't create SQL database using vb.net. Thanks in advanc... |
|
| Create dynamic buttons with events (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webcontrols |
| Hi, I'm building dynamic Web Control buttons. Each button must handle the same event (Click or Command) but only the last created button will reply on the click event and not the others. What's wrong ? Many Thanks ! Public DomainPlace As PlaceHolder Public WithEvents CmdDomain As Button Sub Page Load(ByVal s As Object, ByVal e As EventArgs) For Each ud In usr.UserDomains CmdDomain New Button() Cmd... |
|
| Create event at run time (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi, I am new in VB .NET and would like to ask a question. I've create 4 buttons at run time, let's say MyButton1, MyButton2, MyButton3 and MyButton4. Also I want to create a click event for each of them. How can I do it ? After the process, the 4 buttons and their events must be remove. Thanks for helping. |
|
| Create Eventhandler for dynamically created control (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.controls |
| Hi, how can I create Click and DoubleClick event hanlers for PictureBoxes that I created dynamically during run time? See code below: Private Sub Button test Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button test.Click Dim intC As Integer intC ImageCount \ cColumns Label Test.Text ImageCount & " " & intC & " " & ImageCount intC * cColumns ' Create new picture box ' P... |
|
| Create menu at run time? (VIP replies) |
| microsoft.public.dotnet.framework |
| Hi all! Is it possible to add a MenuItem at run time and handle the click event? I can add the menu items, but no idea on managing the click... Some tips? Thanks |
|
| Create platform dependent objects (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Hi! I have a Windows Form with a Inputpanel on it which I'm using to get the menubar with the SIP icon to appear. The problem is I also would like to run the program on a ordinary PC(not the emulator). Can I make a object only if the platform is pocket pc? Because right now the program throws an exception while trying to open the form with the Inputpanel. The Microsoft.WindowsCE namespace isn't av... |
|
| create/use form event/property to validate txtEntry (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hello, I have 10 textboxes on a form. I would like to validate text data entry on each textbox. I was looking for a Form Current event or Form Change event but did not recognize any such events. Or maybe there is a property for the Textboxes where I can set data entry conditions? Wondering about CausesValidation textbox property how to use. I was thinking maybe I could create a custom form event t... |
|
| CreateProcess/WaitForSingleObject problem (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| I'm trying to apply the "Launching Applications..." quickstart example to one of my applications and I'm having problems. (See: http://samples.gotdotnet.com/quickstart/compactframework/doc/waitforsingleobject.aspx) To simplify things, application A is the application launching application B. The problem I'm having is that when WaitForSingleObject is called from application A, execution stop in app... |
|
| Creating a databound ComboBox (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.controls |
| Okay, I'm having MAJOR problems with this thing. Here's what I'm trying to do: I have a form which displays information from a database and allows the user to change it. It contains various controls such as text boxes and comboboxes. Now, I want to use the comboboxes to restrict the user to entering only a handful of values into certain fields so I populate the comboboxes with the allowed values i... |
|
| Creating a databound ComboBox (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.databinding |
| Okay, I'm having MAJOR problems with this thing. Here's what I'm trying to do: I have a form which displays information from a database and allows the user to change it. It contains various controls such as text boxes and comboboxes. Now, I want to use the comboboxes to restrict the user to entering only a handful of values into certain fields so I populate the comboboxes with the allowed values i... |
|
| Creating a Pause in Execution (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| What's a nice way to create a non blocking pause in execution? Will I need to use some kind of timer for this, or is there a nicer way? |
|
| Creating a templated Web control (VIP replies) |
| ASPFriends.com 'aspngcontrolscs' list |
| Greetings, y'all. I'm wanting to create a templated Web control that will allow the user to specify a template. In my Web control, I'd like to populate a SqlDataReader with a database table the template would be there to allow the user to customize the output of the databse information. For example, I'd like to be able to have the user enter: mynamespace:mycontrol runat "server" ItemTemplate b Pur... |
|
| Creating and saving Graphics in ASP.NET (VIP replies) |
| microsoft.public.dotnet.framework.drawing |
| I need to creat and save some graphics in asp.net web page but it's giving me error sending the graphics as a response output stream is doing well as following Response.ContentType "iimage/JPEG"; oBitmap.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Bmp); Response.End(); but I need to save it at same path by changing middle line as follows oBitmap.Save(Server.MapPath("charts.jpeg"... |
|
| Creating browser sniffer with ASP.Net (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi all, I am very new to ASP.Net. I am trying to create a sniffer for our program. We want our users to click our sniffer and hopefully the sniffer will check their computer against our requirements. I would like to ask experts like you to see which items are actually doable with ASP.Net. Below I listed all of the items we are looking for but I can understand if some of the items are impossible to... |
|
| creating checkboxlist from arraylist (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webcontrols |
| Hi, I need to create a checkbox list that includes the DataValueField along with the DataTextField. The concept is mentioned on http://msdn.microsoft.com/library/default.asp?url /library/en us/cpgenref/html/cpconcheckboxlistwebservercontrol.asp I am in the learning stage of ASP.net so I am at the stuck at the step of creating the arraylist to populate the checkboxlist. Any info greatly appreciated... |
|
| Creating Custom Component using a Native dll (c++) (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Hi, I am having extreme difficulty with creating components. I have created a dll in Embedded c 4.0. I have created a wrapper for it and am able to expose all the COM objects in managed code. Although this is the problem I am having: Trying to create a custom control to which I can drag and drop into my form. I tried to create a run time and design time dll but was unsuccessful. I have 3 books and... |
|
| creating custom HttpContext.Current.User.Identity (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.security |
| I've started getting into using forms authentication for asp.net apps with c#. From what i understand so far (limited) I like the way things work! I've got an application working right now where an email address and password is checked from a database and I can check the authenticated user's email address with HttpContext.Current.User.Identity.Name. This all works fine! I want to be able to do: Ht... |
|
| Creating custom textbox (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| Hi frnd, Can u suggest me how to create a textbox with readonly property without changing its look and feel apperance(as the bcak color changes to shady) ? Any suggestion or tip would be of great help. Thanx |
|