| ISDBNULL - which dll to reference? (3 replies) |
| ASPFriends.com 'aspngvb' list |
| I'm trying to compile a dll but keep getting an error on ISDBNULL. It says it isn't declared. Which dll do I have to reference? 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 97 78 80 Mob.: 46 (0)708 97 78 79 Mail: colbiornsen@sonnenburg.se Web.: www.sonnenburg.se B2B Web agency Specializing on .Net 20 |
|
| Could not find a part of the path (5 replies) |
| ASPFriends.com 'aspngvb' list |
| I am trying to create a directory on a remote server in my network and I keep getting the following error : "Could not find a part of the path" Code looks like this: Dim lobjFileDirectory As Directory lobjFileDirectory.CreateDirectory(lstrDBFilePath & "Uploads\" & gstrICcode "\Upload") Where lstrDBFilePath is a string set to my remote server, \\someserver\fileshare\ The permissions on that share i... |
|
| COM Port Communications (2 replies) |
| ASPFriends.com 'aspngvb' list |
| Does anyone have an alternative to SerialStream.cs that would allow communications with a COM port. More importantly a modem. Jaison Green Hunt Interactive 425*746*7880 |
|
| connecting to DBF file (2 replies) |
| ASPFriends.com 'aspngvb' list |
| Moved from [aspfreeforall] to [aspngvb] by Let the good times roll bbilbro@hotmail.com Hi, Can someone tell me how to connect to a .dbf database file to extract info using VB.NET Apparently these connection strings dont work Dim strConnStr As String "Driver {Microsoft dBASE Driver (*.dbf)};DriverID 277;Dbq c:\comcat.dbf" Dim strConnStr As String "Provider Microsoft.Jet.OLEDB.4.0;Data Source c:\com... |
|
| assembly's manifest definition (2 replies) |
| ASPFriends.com 'aspngvb' list |
| Hi, I getting the following error when I ran my app doing in Beta 2 to full version Server Error in '/ReferredJobs' Application. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: The located assembly's manifest defini... |
|
| SV: Re: SV: Re: ISDBNULL - which dll to reference? (2 replies) |
| ASPFriends.com 'aspngvb' list |
| That is not it, already referencing that dll. It would really be of great help to get an overview of which namespaces belongs to which dll. 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 97 78 80 Mob.: 46 (0)708 97 78 79 Mail: colbiornsen@sonnenburg.se Web.: www.sonnenburg.se B2B Web Solutions Specializin... |
|
| The process cannot access the file because it is being used by another process (3 replies) |
| ASPFriends.com 'aspngvb' list |
| I am trying to copy a file that was uploaded to a temp directory and when I try to copy it I get the following error: "The process cannot access the file because it is being used by another process" I have closed all associated objects with this file and I am just trying to move it to a new folder. Here is my code from the sub I am trying to do this with. This code is from an asp.net codebehind pa... |
|
| SV: Re: ISDBNULL - which dll to reference? (3 replies) |
| ASPFriends.com 'aspngvb' list |
| That did the trick. But really, which .dll would I have to reference to use ISDBNULL as is? 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 97 78 80 Mob.: 46 (0)708 97 78 79 Mail: colbiornsen@sonnenburg.se Web.: www.sonnenburg.se B2B Web Solutions Specializing in .Net Ursprungligt meddelande Fr E5n: Tim Mu... |
|
| How to declare this control (<input Id= TxtQuestGrp type=file>) in asp.net (in code behind) (2 replies) |
| ASPFriends.com 'aspngvb' list |
| HiFolks, To upload file i am using input Id TxtQuestGrp type file How to declare this control in asp.net(code behind) " INPUT id TxtQuestGrp tabIndex 15 type file size 36 name File1 runat "server" Height "26px" Width "50px" style "WIDTH: 335px; HEIGHT: 22px" " Eg:For label and Textbox i could use like this Protected lblmsg as Label Protected Txtprobno as TextBox Any ideas Regards Dine |
|
| SizeOf in VB (3 replies) |
| ASPFriends.com 'aspngvb' list |
| Moved from [aspngdatagridrepeaterdatalist] to [aspngvb] by Let the good times roll bbilbro@hotmail.com Moved from [aspngvb] to [aspngdatagridrepeaterdatalist] by Let the good times roll bbilbro@hotmail.com I need to get the size in memory (in bytes) of a DataSet. i've tried: Microsoft.VisualBasic.Len(Me.m oSearchResults) and got a type mismatch. i tried: Microsoft.VisualBasic.Len(CType(Me.m oSearc... |
|
| SelectedIndexChanged event not firing correctly (6 replies) |
| ASPFriends.com 'aspngvb' list |
| I am having problems with the dropdownlist box. When a selection in the dropdown box changes, I want to load another dropdownlist box from the database based on that selection. 20 For this the only relevant event is the SelectedIndexChanged event. But this doesn't seem to fire unless you have another button to reload the page. How do you get around that. 20 Should have ben simple. User selects fro... |
|
| Dynamically Adding Controls to an aspx page (6 replies) |
| ASPFriends.com 'aspngvb' list |
| Folks, I currently have a page set up that dynamically adds controls to a web page (textbox, and calendars, also labels). The controls are adding correctly. 20 My issue is placement. Basically I place a label, then the textbox, or calendar control after the label. I want a line break between each of these, but have not figured out how to do this. Any ideas? I tried creating a literal with " br " a... |
|
| Adding Handlers to controls programmatically (event handler not firing) (4 replies, VIP) |
| ASPFriends.com 'aspngvb' list |
| I have added a control programmatically to a page and have added an event handler. This particular event handler is for clicking a button. However when I step through the code, the click event does not fire. Any ideas why? (below is the code: Dim oSubmitButton As New System.Web.UI.WebControls.Button() oSubmitButton.Text 3D "View Report" AddHandler oSubmitButton.Click, AddressOf PCRMButtonClicked P... |
|