| launching a client application (2 replies) |
| ASPFriends.com 'aspngvb' list |
| can anyone point me in the right direction on how to launch a client application from an asp.net page? I understand why browsers don't let you cleanly do this due to security reasons but.... If it helps, I am on a closed intranet and so can install active x components on the client machines if need be... Thanks, g Chat with friends online, try MSN Messenger: http://messenger.msn.com |
|
| HELP: Replacing line breaks in a web form textbox (4 replies) |
| ASPFriends.com 'aspngvb' list |
| Moved from [aspngfreeforall] to [aspngvb] by Tim Musschoot Tim.Musschoot@rug.ac.be Hi! I've got a textbox on a web form that I need to "clean up" before it gets inserted into a database. The code snippet below shows what I'm trying to do..... Dim strAddress As String strAddress frmAddress.Value.Replace(chr(13), ",") ...but I get the error message: Name 'Chr' is not declared. (I know this is probab... |
|
| explicit interface implementation (2 replies) |
| ASPFriends.com 'aspngvb' list |
| what is the vb equivalent of c#'s explicit interface implementation? Andy Smith Keyboard Jockey #3a7 2.78.1 |
|
| DropDownList (4 replies) |
| ASPFriends.com 'aspngvb' list |
| This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. InterScan NT MIME Boundary Content Type: multipart/alternative; boundary " NextPart 001 01C21C5B.F47ED670" NextPart 001 01C21C5B.F47ED670 Content Type: text/plain; charset "iso 8859 1" I have a DropDownList and I what to set the selected item when a user returns. ... |
|
| HELP: Returning multiple values from a function (7 replies) |
| ASPFriends.com 'aspngvb' list |
| Moved from [aspngfreeforall] to [aspngvb] by Tim Musschoot Tim.Musschoot@rug.ac.be Hi, This might be a really basic question, so apologies in advance!! I've got a function that needs to return 3 values (Outputs from a stored procedure), but I can only seem to retrieve 1 of the values on my ASP page. Is it possible to do this using my code below? I've managed to return all 3 values as a string... R... |
|
| Coding Standards (6 replies) |
| ASPFriends.com 'aspngvb' list |
| We are about to undertake a large project with will require a bunch of VB 6 developers to learn VB.NET. I am looking for some documentation on what MS recommends from a coding standards point. I thought I had seen some coding standards/convensions docs floating around at some point. Any help is appreciated. Devin |
|
| Why I can't set property ? (3 replies) |
| ASPFriends.com 'aspngvb' list |
| I build one control.when user want to use my control, they need pass parameter. So in my class, I define the property: public property Data() as string Get return Data set ... end property Then in page load method: I wrote: Me.Data "test" But It told me exception . What reason that It give me error ? Also I use the datagrid to display the data. WHen the user select one row, the page will refresh. ... |
|
| DLL's unsecure... (2 replies) |
| ASPFriends.com 'aspngvb' list |
| Moved from [aspngvs] to [aspngvb] by Tony Stark IronMan@aspelite.com I am amazed how easy it is to crack open a dll these days. Is there anything we can do to protect our code a little better outside of purchasing an obfuscator for $1500? Seems to me this protection was integrated in VB6... and now developers are going to have to shell out another $1500 to protect their intellectual property. I kn... |
|
| Dropdownlist setfocus problem (2 replies) |
| ASPFriends.com 'aspngvb' list |
| Hello Folks, I have two dropdownlist boxes in a form after 5 text boxes. Bounding data into first dropdown when form loads. When i select particular item in first dropdownlist i am displaying records in second dropdownlist according to particular item selected in first dropdownlist. "But here i am facing problem . I need to set focus in the second dropdownlist." When i selct item in dropdownlistbo... |
|
| Quickstart Tutorial - Need Help Please with Type Expected Error (2 replies) |
| ASPFriends.com 'aspngvb' list |
| I have been trying to compile the quickstart tutorial for the Personalized Portal, and can't seem to get it to compile. Here is the problem: 1)I have the Personalization.VB Class compiled and referenced in the Project. 2)I then have the PortalModulePage.VB class in the the project: PortalModulePage.VB: Imports System Imports System.Web.UI.Page Imports System.Web Imports System.Collections Imports ... |
|
| Calendar Control (4 replies) |
| ASPFriends.com 'aspngvb' list |
| Hi, Is it possible to have the HTML generated by calendar control stored in a string rather than streamed to the screen? How? Also, is this possible for objects in general? Or does the object developer specifically have to create a method/property to accomplish this? Thanks Scott |
|
| Solid ASP.NET Threading examples? (3 replies) |
| ASPFriends.com 'aspngvb' list |
| Moved from [aspngfreeforall] to [aspngvb] by Tim Musschoot Tim.Musschoot@rug.ac.be I can't for the life of me find any solid ASP.NET multithreading examples, everything is Windows Forms in C# which I tried to recreate on web forms, but to no success. Anybody out there have any solid asp.net multithreading (System.Threading) examples? What I am basically trying to do is create a background process ... |
|
| Missing Reference to Microsoft.Data.ODBC.dll (2 replies) |
| ASPFriends.com 'aspngvb' list |
| I am trying to connect to my DB using the following code. Which gives me the error on compile C:\DotNET\vbnet\testdbconnection\testdbconnection\Form1.vb(1): Namespace or type 'ODBC' for the Imports 'Microsoft.Data.ODBC' cannot be found. I know I need to add the reference to "Microsoft.Data.ODBC.dll" to use Import "Microsoft.Data.ODBC". I don't see "Microsoft.Data.ODBC.dll" on my Project references... |
|
| Session state in a component (2 replies) |
| ASPFriends.com 'aspngvb' list |
| Hi there, How can I access session variables in one of the compnent vb files? Thanks, Kevin |
|
| Proper IF statement (5 replies) |
| ASPFriends.com 'aspngvb' list |
| Moved from [aspngfreeforall] to [aspngvb] by Tim Musschoot Tim.musschoot@rug.ac.be I have an IF statement like the following. Is there a more logical way of doing this? If Request.Cookies("CookieName") Is Nothing Then 'Do Nothing Else Response.Redirect("Page.asp") End IF Thanks Join the world's largest e mail service with MSN Hotmail. http://www.hotmail.com |
|
| SV: RE: CType (2 replies) |
| ASPFriends.com 'aspngvb' list |
| Your button can not refer to 'DataGridEventArgs': Public Sub sub Buy(sender As Object, e As System.Web.UI.WebControls.DataGridItemEventArgs) Problem here Should be 'EventArgs': Public Sub sub Buy(sender As Object, e As System.Web.UI.WebControls.EventArgs) Hth Regards/Halsningar Andre Colbiornsen Sonnenburg Communications Bergsgatan 3, SE 211 54 Malm F6 Sweden Tel.: 46 (0)40 97 78 80 Fax.: 46 (0)40... |
|
| CType (5 replies) |
| ASPFriends.com 'aspngvb' list |
| Moved from [aspngdatagridrepeaterdatalist] to [aspngvb] by Let the good times roll bbilbro@hotmail.com Hello All, I am trying to grab the value of a HTMLInputHidden in a datagrid. This is the code I am using: Dim dgi As DataGridItem CType(dgi.Cells(0).Controls(2), HTMLInputHidden).ToString The position is right, but I keep getting an error. Does anyone know how to grab the value of an HTMLInputHid... |
|
| Returning four values from a function... (17 replies) |
| ASPFriends.com 'aspngvb' list |
| Is there any way to return four different values from a function? Greg |
|