Filter By File Extension - Check For .jpg .gif .png All Case Insensitive?

Jun 10, 2009

I am searching through files and only want to include files with certain extensions. Right now I have what is below but it would be stupid to do it that way for 3 or more file types and it isn't completely case insensitive.

If ext = ".jpg" Or ext = ".JPG" Then

I want to check for .jpg .gif .png all case insensitive.

View 11 Replies


ADVERTISEMENT

Process Name Check Needs To Be Case Insensitive

Oct 25, 2009

I put this at the top of my project:
Option Compare Text

Here is the sub that contains the process name check:
Sub AC3()
Dim ProcessList As System.Diagnostics.Process()
ProcessList = System.Diagnostics.Process.GetProcesses()
Dim Proc As System.Diagnostics.Process
For Each Proc In ProcessList
[Code] .....

No errors, but it only checks the lowercase hack/cheat/inject. I need it to be case insensitive when checking it.

Figured it out and tested and it works. I put, right after dim procname...
procname = procname.ToLower()
works great.

View 1 Replies

Case Insensitive Contains Method

Oct 29, 2009

I am using the contains method to look through an array to find matches, however I notice that when I use it it is case sensitive. Is there another method I can use to do a case insensitive search or some way to modify the contains method to search case insensitively? [code]

View 3 Replies

Get Filenames Case Insensitive?

Sep 9, 2011

I am using this code to get a list of files in a folder:

Dim files() As String = (From file In New IO.DirectoryInfo(myFolder).GetFiles Where file.Extension = ".exe" Select file.Name).ToArray

This works fine, but the problem is that it selects only files with the extension of "exe" & skips files that have an "EXE" extension. Is there any way to make it case-insensitive, to make it return any combination of upper/lower case letters in the extension?

View 2 Replies

How To Make WPF Case-insensitive

Jul 21, 2010

I dislike WPF's inability to interpret text in a case-insensitive way.Are there any tools (i.e. VS plugins) out there that will take my VB .NET code and handle the case-sensitivity issues for me?Edit: Now with examples.

Input:

<Dockpanel DockPanel.Dock="Bottom">
<Label Content="(c) blahblah" HorizontalAlignment="Left" Name="Label2" VerticalAlignment="Bottom" Opacity=".75" Background="White" DockPanel.Dock="bottom"/>
</DockPanel>

Output:

<DockPanel DockPanel.Dock="Bottom">
<Label Content="(c) blahblah" HorizontalAlignment="Left" Name="Label2" VerticalAlignment="Bottom" Opacity=".75" Background="White" DockPanel.Dock="Bottom"/>
</DockPanel>

View 2 Replies

C# - Case-sensitive Vs Insensitive Languages?

Nov 28, 2010

visual basic.net is case insensitive so it allows the coder to write without caring or remembering the casing of variables. it also relieves from the 'undeclared variable' errors if you use the variable in another case than the one used in declaration. The fact that its line termination is a line feed makes it even more readable unlike C# or c++ that need good care in the casing and contineous war with following up with the {}, matching them and figuring out which is for which.

my question is what are the advantages of c# over vb knowing that both get compiled to MSIL so there is almost no performance difference between the two languages?

View 4 Replies

Case Insensitive Dictionary Not Working?

Jun 15, 2011

I have spend a couple of hours trying to figure out why my generic Dictionary(Of String, String) is not ignoring case.Here is my code:

Dim test As New System.Collections.Generic.Dictionary(Of String, String)(System.StringComparison.OrdinalIgnoreCase)
test.Add("FROG", "1")

[code].....

View 1 Replies

Case Insensitive Web Reference Enumeration

Apr 15, 2012

I created a Web Reference (also tried Service Reference) to a WSDL that had the following node inside an xsd:
<xs:element name="filter">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element minOccurs="0" maxOccurs="unbounded" ref="condition" />
<xs:element minOccurs="0" maxOccurs="unbounded" ref="filter" />
[Code] .....

This wouldn't build in a VB project because VB.NET is case insensitive. I tried deleting one set of and/or, but when the XML is created, it simply ignores the selected value. I also tried appending an X at the end of one the sets which also failed. Is there a way to make this work? I also tried updating the XSD so it just had two values without success. The interesting thing to note is that default is set to "and" and while debugging it will set it to and, it doesn't actually produce the node attribute of it just generates.

View 1 Replies

Create A Case-Insensitive TextBox?

Feb 27, 2009

I have a TextBox that need to be case-insensitive. For example, I have this. If searchTextBox.Text = "Park" Then... I need results back if "Park" is typed or "park".

View 6 Replies

Overcome XML Case Sensitive - Insensitive?

Jan 6, 2012

I have a project to read xml files. It comes from a web service. But it can come sometimes with different attributes.

The standart xml file is like this:
<xml ....>
<car carname="Opel">Opel

[code].....

View 2 Replies

Using String.Contains With Case-insensitive Arguments?

Dec 8, 2006

Is there any way to use Dim Str as String = "UPPERlower"Str.Contains("UpperLower") and have it return true?

View 5 Replies

.net - Case Insensitive String Compare In LINQ-to-SQL

May 8, 2009

I've read that it's unwise to use ToUpper and ToLower to perform case-insensitive string comparisons, but I see no alternative when it comes to LINQ-to-SQL. The ignoreCase and CompareOptions arguments of String.Compare are ignored by LINQ-to-SQL (if you're using a case-sensitive database, you get a case-sensitive comparison even if you ask for a case-insensitive comparison). Is ToLower or ToUpper the best option here? Is one better than the other? I thought I read somewhere that ToUpper was better, but I don't know if that applies here. (I'm doing a lot of code reviews and everyone is using ToLower.)

[Code]....

View 6 Replies

Array.FindAll Case Insensitive Strings?

Dec 27, 2011

I am working on a program for a client and will need a feature to search for strings from an array without case sensitivity. This currently works, but it is case sensitive. I commented out the code for readability.

' Declare array for goldSmithingExpertise and add items.
Dim goldsmithingExpertise() As String = {"Alluring Earrings", "Alluring Ring", "Alluring Belt", "Howling Staff", "Dawn Ring", _
"Melancholy Earrings", "Melancholy Belt", "Melancholy Ring", "Jubilant Ring", "Jubilant Earrings", _

[code]....

View 4 Replies

VS 2010 List.Contains Case-insensitive Lookup

May 29, 2012

If I have a list of filenames in a list, how can I do a case-insensitive lookup?

Dim files As List(Of String) = IO.Directory.GetFiles(myFolder).ToList
If files.Contains(myFileName) Then
'do something
End If

The above snippet will only do a case sensitive search.

View 5 Replies

File I/O And Registry :: Find File Name Regardless Of Extension's Case?

Sep 15, 2009

I need to be able to find files in a folder where the extension can be either caps or small letters. Here's my code:

Code:
Public Function GetIcon(ByVal name As String) As Icon
Dim execAssembly As Reflection.Assembly = Reflection.Assembly.GetExecutingAssembly
Dim stream As System.IO.Stream =

[Code]....

How can I modify that function to return the file regardless of whether the extension is in caps or small letters?

This is in VS2005 for a .NET 2.0 Compact Framework project

View 2 Replies

Case Sensitive/insensitive Search Text In A String?

Sep 8, 2010

I've been using text.indexof() to see if a string is located inside another string, however is it it possible to do a case sensitive/insensitive search option? I've been looking around Google and not having much luck with it.

A huge bonus would be if it could count the number of occurrences inside the string!

View 1 Replies

Ignoring Hyphen In Case Insensitive Dictionary Keys?

May 31, 2012

I have a case insensitive dictionary in asp.net/vb.net like this:

Dim caseInsensitiveDictionary = New Dictionary(Of String, Single)(StringComparer.OrdinalIgnoreCase)
it holds values like this

[code].....

View 2 Replies

Linq Join On Parameterized Distinct Key CASE INSENSITIVE?

Oct 7, 2010

To revisit a previous question with a further stipulation..Anyone know how to do the following, IGNORING CASE?

[Code]...

View 3 Replies

Regex In 2005 For Case Insensitive Registry Search

Dec 15, 2009

I've recently learnt that Regex class maybe used to develop case insensitive searches. I have a registry search program that will return only the exact matches from the registry. I need to make it case insensitive. how to do that using regular expressions in vb.net 2005. Im posting my code below:

Sub SearchSubKeys(ByVal root As RegistryKey, ByVal searchKey As String)
Dim matchtype As String = Nothing
Dim str(5) As String

[Code].....

View 5 Replies

VS 2008 Unable To Do A Case-insensitive Query On A Table?

Jul 13, 2009

I'm having trouble when trying to do a case-insensitive query on a table. Right now the query is:

txtQuery = "SELECT Status, RankingSearchEngines FROM [tbl-DATA-Client-Keywords] WHERE [Client-ID-Code] = '" & clientNo & "' AND lower(Keyword) LIKE '" & sField(0) & "';"

The actual query executed is:

SELECT Status, RankingSearchEngines FROM [tbl-DATA-Client-Keywords] WHERE [Client-ID-Code] = '1402' AND lower(Keyword) LIKE 'flyer printing';

I have an entry 'Flyer Printing' in the database, and this query works perfectly without the case-insensitive check.I'm not sure if this is an OleDB issue, as I've never had this sort of problem with SQLPlus, or anything else

The exception being thrown is:

IErrorInfo.GetDescription failed with E_FAIL(0x80004005).

View 4 Replies

Check If There Is A File With Specific Extension?

Jan 30, 2012

I tried this code but I don't know how to complete it. the code is to check if there is a file with extension ".mdb" in folder Debug in my project, and if there is a file it will get the name of it.

MsgBox(IO.File.Exists(IO.Path.HasExtension(Application.StartupPath)))

View 4 Replies

VS 2008 Check File Extension

Oct 27, 2010

I have this code for the Drag&Drop feature of listbox1:[code]In the "Private Sub ListBox1_DragDrop" I want to add the fileextension check to see it the file will or not be added to the list. How do I do it?

View 2 Replies

VS 2008 Check File Extension?

May 1, 2010

I have this code for the Drag&Drop feature of listbox1:

vb
Private Sub ListBox1_DragDrop(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles ListBox1.DragDrop

[code].....

View 3 Replies

Any Way To Check If File Exists Only Knowing Extension?

Jan 8, 2010

Is there a way to find out if a file exists if you only have the file extension? I tried this but it doesn't seem to work.
If My.Computer.FileSystem.FileExists(drive.Name & "*.cde") Then

View 6 Replies

Case-sensitive Languages Vs Insensitive Languages?

Nov 27, 2010

visual basic.net is case insensitive so it allows the coder to write without caring or remembering the casing of variables. it also relieves from the 'undeclared variable' errors if you use the variable in another case than the one used in declaration. The fact that its line termination is a line feed makes it even more readable unlike C# or c++ that need good care in the casing and contineous war with following up with the {}, matching them and figuring out which is for which.my question is what are the advantages of c# over vb knowing that both get compiled to MSIL so there is almost no performance difference between the two languages?

View 1 Replies

Intersect Extension Method, Case Sensitivity Not Working

Jan 18, 2010

I am trying to compare the contents of 2 collections in a unit test in .NET using MSTEST. To make things simple, instead of having to .Sort() and then loop through the collection and compare items one at a time, I've found the new and very cool .Intersect Extension method.

It seems to work great by doing:

Assert.AreEqual(expected.Count, actual.Intersect(expected).Count)

However, now that I have a test which needs to be case-sensitive, it breaks. I've tried sending Intersect's second parameter StringComparer.Ordinal,StringComparer.InvariantCulture, and StringComparer.CurrentCulture... no luck..

EDIT: here is the data:

Actual:
(0) "FOO" String
(1) "foo" String
(2) "Foo" String

[Code]....

It seems to be removing a matching duplicate 'foo', and a matching duplicate 'BAZ'. Perhaps there is a better way to assert collections are matching?

_EDIT2: I think Intersect() removes duplicates, which is why this is breaking. I Found the CollectionAssert Class.

View 2 Replies

Use Filter When Saving Images (instead Of Extension)?

Jan 24, 2010

Use filter when saving images (instead of extension)?

View 3 Replies

Add A Filter (or Automatic Extension Recognizer) In The Screen ?

Jun 15, 2012

I have some questions with the code uploaded above. As you see, it is an advanced file downloader. Now, my first question is:

1. How to add a filter (or automatic extension recognizer) in the screen of ... button? And, how to code the program to automatically add the extension of the given URL?

2. I want to code the Open File button in Form2 to open the downloaded file. I tried to use the downloading : label, but it just gave me some errors. What shall I do?

View 5 Replies

SaveFileDialog Filter Save As Type Asks To Overwrite Old Extension Bug?

Feb 27, 2012

I have a VB.NET program with a SaveFileDialog control with the filter set as ".asx|*.asx|.m3u|*.m3u" (without the quotes). It works fine to save a file, but if I then try to save a file with the same name of an existing file and then change the extension in the save as type box, it still thinks I want to save the file as the existing file and asks to overwrite the file, disregarding the newly selected file extension.

I have tried setting the SaveFileDialog.FileName = Nothing after saving a file, so the Save File Dialog Box the File name box is empty, but then I like to click the existing file to get the file name I want, then select a new extension and try to save, but it still asks to overwrite the file with the other extension.

I hope my situation is clear and sorry if it has been already asked a million times...but can anyone point me in the right direction or tell me how I can save the file with the currently selected extension, not the previous selected extension when the file name was entered?

Code:
If SaveFileDialog.ShowDialog = Windows.Forms.DialogResult.OK Then
If Path.GetExtension(SaveFileDialog.FileName) = ".asx" Then
' Code Here to Prepare the CodeASX ...

[code]....

View 3 Replies

.net - Check That Extension Methods On An Array Got A Specific Size?

May 30, 2012

I'm using extension methods based on an array and I would like to know if there is an easy way to check that array got a specify size instead of me doing a copy paste of

if array.count != 1000
throw new exception "size of the array does not match"
in about ~50 extensions

this a small sample of extensions that I use, I got WAY more

<Extension()>
Public Function IsWhite(ByVal board() As bitPiece, ByVal pos As Integer) As Boolean
Return (board(pos) And bitPiece.White) = bitPiece.White
End Function

[code]....

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved