Topics
-
- 0 replies
- 812 views
I've been searching on google, and the info is very sparse. Anyone know any places I can start?
Last reply by IceAzul, -
- 0 replies
- 1.3k views
I'm writing a configuration program and I need to get a list of DVD MPEG-2 codecs on the machine. The same list you get from the program DecCheck Eg. NVIDIA Video Decoder Leadtek Video/SP Decoder Is there any way to do this using managed code? I assume it might be a bit difficult for .NET's lack of DirectShow support. Perhaps I can use DirectShowLib or something, but it would be nice if I can do it in my own class without a dependancy even if I have to use p/invoke.
Last reply by headkaze, -
- 3 replies
- 1.7k views
Good day, I have a slight problem with a site I have developed. I have a report being generated to a new browser by using the following code Response.Write("<script language='javascript'> window.close();window.open('" & Url & "',null, ''); </script>") The problem is that Zone alarm pro and the like are blocking the page from comming up because it thinks it is a popup. Is there another way to achieve this ?
Last reply by TheWizardofInt, -
-
- Administrators
- 7 replies
- 1.1k views
I finally ran into something I couldn't translate easily. Maybe one of you can help. EXListViewItem lstvItem = this.GetItemAt(e.X, e.Y) as EXListViewItem; Never seen the "as" keyword used that way in C# before and not sure quite what to do with in in VB
Last reply by David Anton, -
-
-
- Administrators
- 2 replies
- 2.3k views
Here's what I have. The selected text in a FileListBox is Detail.wmf. I'm trying to get strTrimmed to equal Detail without the .wmf. The trim never happens. No errors.... What am I doing wrong? Dim strTrimmed As String = Me.FileListBox.Text.TrimEnd(".wmf") thanks, Bernie
Last reply by bjwade62, -
-
-
- Administrators
- 2 replies
- 1.1k views
I have an MDI form i'm using as an Application class This application "has a" login form as a private property which is exposed to a consuming application controller class via a public getter. I want my controller to handle a login event raised by the login form, however I cannot seem to handle events of the login form as a property of the application? E.g. (pseudo code) Public Class Application private controller as Controller private login as LoginForm Public ReadOnly Property UserLoginForm() As LoginForm Get Return Me.login End Get End Property Private Sub Application_Load() Handles MyBase.Load Me.controller …
Last reply by DannyT, -
-
-
- Administrators
- Leaders
- 6 replies
- 1.2k views
The first line of the saved file from a textbox contain these charactors . Why are they there and do I stop them from happening? Example: (setvar "sdi" 1) What I want is: (setvar "sdi" 1)
Last reply by Erel, -
-
- 1 reply
- 997 views
is there a way to write a query sorting a column in a customized order? it's possible to create a table referencing all possible values in that column and assign sort order in the new table. if no new table can be added, are there any easy ways? thankx.
Last reply by Gill Bates, -
- 0 replies
- 1.2k views
Hello everyone, I need to create a windows service that will monitor the emails on an exchange server. I really dont know where to begin. The service needs to check the server every 60 seconds and parse the text in each email to determine priority. I know how timers work...I've just never coded something of this nature before. If anyone has any sample code or links to get me started, i would really appreciate it. Thanks.
Last reply by jayy66, -
-
- Administrators
- 2 replies
- 3.3k views
I've done quite a bit of searching and most pages on the NET point to an article that is no longer available.. http://www.omniscium.com/index.asp?page=DotNetScreenResolution I can view the article fine on archive.org, but it would be nice to have the Resolution.zip file that was hosted on the site and is now a broken link. http://web.archive.org/web/20050227032111/http://omniscium.com/index.asp?page=DotNetScreenResolution Does anyone here have that file who can re-post here? It would save me some time writing my own class for it.
Last reply by headkaze, -
-
- 1 reply
- 932 views
I'm developing a website in VB 2005 and the menu doesn't dropdown right in anything earlier than Internet Explorer 7. That is, hover over a menu item with a dropdown and the dropdown appears about 400 pixels to the right. Any help here? A draft of the site is at http://www.studentsatbethel.org/. Any help with this is appreciated.
Last reply by laredo512, -
- 2 replies
- 4.7k views
hopefully someone can assist me with this. trying to make it so that when one div in my html page is hidden, another one is visible. tried this function hideShow(first,second) { var div1 = document.getElementById(first).style; var div2 = document.getElementById(second).style; div1.display = div1.display? "block":""; div2.display = div2.display? "":"block"; } not sure how to proceed. any help greatly appreciated. thanks.
Last reply by Gill Bates, -
- 6 replies
- 3.4k views
in 1.1, Global.asax has a code behind : globalasax.vb where I could have "imports" and it had Intellisense.. Using 2.0 and I dont see a ".vb" file. I had to type in code below with no Intellisense: Sub WindowsAuthentication_OnAuthenticate(ByVal Source As Object, _ ByVal e As WindowsAuthenticationEventArgs) Dim userIdentity As String userIdentity = e.Identity.Name() End Sub Am I missing something?
Last reply by Gill Bates, -
- 1 reply
- 824 views
Hi, I need to create a page that enables the user to download the files from his directory depending upon his username. So, each user has its own specific directory. I have been able to display the files using DataGrid and put a download button next to each row (Asp:ButtonColumn) but I am unable to trigger the download. I have created a subroutine that enables the download using file streams, and I want the button to trigger that sub whenever the user clicks on it. Please help! Also plz. provide the code if possible Regards, Noorul
Last reply by Gill Bates, -
- 1 reply
- 1k views
Hello! I have a customer that is using kiosk-type machines for multiple users. What they would like to happen is, after X minutes of inactivity, the page will re-direct to their Kiosk Home Page. I have found a few posts about a java applet that can be loaded onto the page to run and keep track of inactivity, but have not seen any code. Does anyone have a solution that would work? Thanks, Steveo
Last reply by Gill Bates, -
- 0 replies
- 1.6k views
Hi all, I'm writing a C# app that will print information from a database. I have a pre-printed form that I need to print on and align the data so that it fits in the pre-defined areas. What is the easiest way to do this? Does anyone possibly have any examples that they can point me to? I really don't want to take out a ruler and manually enter all of the spacing, etc. Any help would be appreciated. Thanks in advance, Chris
Last reply by dakota97, -
- 0 replies
- 938 views
In VB2005, when you add a panel or datagridview, there should be a tiny right arrow on the top right of the control. How can I have that with my own user control ? Also how can I have spesific property for my user control ? (Like property page in VB6) Thanks in advance
Last reply by michaelrawi, -
- 4 replies
- 1.1k views
Hi everyone, I'm making a simple user control that encapsulates some javascript that I found online (the javascript is a pop-up calendar that writes the selected date to an html input tag). The script will not work if runat="server" is added to the tag, nor will it work if I try to use a textbox instead. I'd like to be able to expose the selected date as a property of the control I'm making, but I'm having trouble finding a way to access the value of the input tag programatically. Any ideas?
Last reply by ballisticnylon, -
- 5 replies
- 3.3k views
I'm currently owner drawing a listbox, and extending it through the drawitem, and measure item methods, basically i've been trying many ways to detect if a particular list box item has i mouse over it, i've tried the e.state property using a bit-wise comparison through the enum, DrawItemState.HotLight. Doesn't work Has anyone else got any better ideas? Thanks.
Last reply by captain insaneo, -
-
- Administrators
- 7 replies
- 2.8k views
How can I easily parse a string like the following? <First>John</First><Last>Doe</Last><MiddleInitial>J</MiddleInitial> If I want to extract the last name 'Doe' from that string, is there an xml command to do so? I hope I wouldn't have to use string manipulation to find the location and parse the text. Changing the format of the string to parse isn't an option. In fact, it could be even more messed up, like this: 156^first:1:3^last:2:4^<First>John</First><Last>Doe</Last><MiddleInitial>J</MiddleInitial>^blahblahblah Any help?
Last reply by PlausiblyDamp, -
-
Who's Online 0 Members, 0 Anonymous, 46 Guests (See full list)
- There are no registered users currently online