Resolved Stumped Regex Works In C# But Not VB?

Jan 12, 2010

I'm working through the Pro ASP.NET MVC Framework book by Apress (which is great, btw) and it's in C# although we mostly work in VB so I'm "translating" the examples along the way. So far so good but I ran into something that has thrown me.Long story short we need to validate that the string the user gave us as an email address. This returns true in C#:

Console.WriteLine(System.Text.RegularExpressions.R egex.IsMatch("Me@me.com", ".+\@.+\..+"));

But this returns false in VB:Console.WriteLine(System.Text.RegularExpressions.R egex.IsMatch("Me@me.com", ".+\@.+\..+"))

View 2 Replies


ADVERTISEMENT

Regex - Works On Every Regextester But Not In .net Application?

Nov 23, 2011

i got the following regex, which is working on some regex testers out there flawlessly.I want 1 item with "500", 1 with "600" and 1 with "-100".

Dim matches As MatchCollection
Dim regex As New Regex("(d+)s/s(d+)s((-?d+))")
matches = regex.Matches("500 / 600 (-100)")

My matches.count is one, with the complete string. Nothing else.

View 2 Replies

Program For Prime Numbers Stumped?

Feb 25, 2010

Simple Program for Prime numbers stumped?

View 1 Replies

Project And Am Getting Stumped On The Error In Visual Studio?

Nov 21, 2009

I am writing a project and am getting stumped on the following error in Visual Studio. It reads "Warning 1 Unused local variable" and "Warning 2 Access of shared member, constant member, enum member or nested type through an instance; qualifying expression will not be evaluated"Here is snap of my code and the problem is highlighted. Any thoughts?Private Sub xmlImport(ByVal source As Object, ByVal e As FileSystemEventArgs)Dim eConnect As New eConnectMethods

[Code]....

View 1 Replies

.NET Class Program Harvey Industries Stumped On Code?

Nov 28, 2011

I have to submit this assignment that I have mostly done. But the problem is that the program calculates the pay roll even if you dont select a martial status radio button. I need to make one of the radio buttons default upon the program being opening opened. Also Im getting a negative number for the fwt label result after calculating. Why could that be? Here is my code:

' Project name: Harvey Industries Project
' Project purpose:
' Created/revised by:
Option Explicit On

[code].....

View 1 Replies

Concatenating A Variable With A Regex Group Match In Regex.replace?

Apr 5, 2012

I am having an issue where I am using regex.Replace to replace part of a string. The basic idea is that I want to capture the beginning of the string then replace the end of the string with a value from code. For an example pretend I have a string that says "Test Number " followed by number and I want to increment that number. I capture the "Test Number " but when I try to concatenate that capture with the new number it treats the capture ($1) as a literal and replaces the entire string with $1[new number].

[code]...

This will output "We are on Test Number 2", as expected. how I can use a variable in the replacement string portion of the Regex.Replace when including a captured group?

View 1 Replies

Regex: Take Text & Some Special Characters Between The Xml Tags Using Regex On C#.net?

Feb 23, 2012

I want to take the text and some special characters between the xml tags.. My input file contains:

[Code]...

now i want the Regex to take text and the special characters between the tags <line>,<inline>..

View 2 Replies

Increment Regex Match Using Regex.Replace

Jun 21, 2012

I'm creating a program in VB.NET to output multiple images. Some images will have the same file name. If there is multiple files with the same name I want to add "_1_" to the end of the file name. If the "_1_" file already exists I want to increment the 1 to be "_2_". If this file already exists I want to continue incrementing the number ultil it doesn't exist. So for example "filename", filename_1_", "filename_2_", etc. Here is the code that I have tried

[Code]...

View 1 Replies

Regex Builder That Actually BUILDS RegEx From A Highlight

Nov 17, 2011

I've been working straight since yesterday trying to get this to work. I'm a noob to RegEx and I've tested out about 5 different RegEx "builders" but each of them require you to navigate through the options to build the Regex...each of them has failed when I try to use them.Is there an application out there free/paid where you select the line you want to grab and the RegEx is auto generated from that highlight rather than having to try to build the line of code? [code]

View 1 Replies

Resolved How To Play Sounds In Vb 9

Oct 29, 2009

i wanted to make a piano with visual basic 2008 and i searched around the internet to see how to play a sound but my search returned results relating only to visual basic 2005 & 6 so i am again forced to waste your time (sorry about that) oh and i also have the wav soundfiles i only want vb to read them in the final exe

View 3 Replies

VS 2005 The Remote Name Could Not Be Resolved?

Feb 19, 2010

When trying to connect an URL, thru my vb.Net application using System.Net.WebClient object,I got the following exception

View 6 Replies

VS 2008 [RESOLVED] ComboBoxes

May 11, 2012

I have 3 Combo boxes that have number 1-9 in each, i would like to make it so that if the first one is set to 9 then the and the second it set to 8 then the first 1 is set to 1, i need them to only equal 9 through all the boxes?

View 6 Replies

[RESOLVED] Application For 64 Bit Computer?

Apr 2, 2009

I wrote a small application for a friend that opens a Excel sheet, get's some data from it and stores that data into a file. I compiled it for AnyCPU (I also did a compile just for his 64 bit machine, same result).Here is the problem:He is able to run the program on a 32 bit computer without any problem, it just won't work on his 64 bit computer.Here is the error he is getting App failed to initialize properly (0xc0000135)

Is this my problem or could this be his problem? As far as I can tell I'm all up to date with VS2008.Is there somewhere I can look specifically what the latest build is for VS2008? I am using VB2008.

View 7 Replies

[RESOLVED] How To Make A Key Generator

May 3, 2011

I m new to VB and i just need a special keygen which i dont know if exists yet or not.First off i'd like to mention that i dont want to make a keygen that will generate a random key out of keys that i have to manually code in (cases) E.G.

[code]...

I want to know how to make a keygen that will generate a letter/number randomly out some example letters which would need to be defined.E.G.Random number out of 0-9 (0,1,2,3 etc) Random letter from A-Z (A,B,C etc) And then obviously display generated key in TextBox. Ideally i would like to improve this more but if i could get the basics then i would move on from there

View 8 Replies

[RESOLVED] Looking For A Word In A Sentence?

Oct 14, 2009

I am looking for a way to display a whole sentence if a word that Iam searchign for found in that sentence:Here is an example:

[Sun Aug 30 2009 04:01:12] Ping failed.
[Sat Aug 29 2009 04:01:10] Ping failed
[Fri Aug 28 2009 04:00:37] Ping failed

[code]....

View 4 Replies

[RESOLVED] Run Exe As Embedded Resources?

Nov 19, 2011

I am wanting to use a vnc installer as an embedded resource, and if the computer running the program does not have vnc installed then typing in a password will install vnc. I have tried everything I can think of and running the process from my computer works, however when ran on a different computer i get the error "File not Found". I am sure I am not calling the embedded resource correctly. I am using Process.Start(" ightvnc.exe /S")

View 24 Replies

Link From Button - When Sheet1 Is Selected, It Works, But When Sheet2 Is Selected, Not Works

Jan 5, 2012

I have a spreadsheet with this code:

'insert link
sheet1.Hyperlinks.Add(sheet1.Range("P1"), "http://http://www.vbforums.com", "")
the code of the button (ribbon)

[CODE]...

When I press the button, it connects to the web site. when the sheet1 is selected, it works, but when the sheet2 is selected, not works, why? the path is sheet1,What's wrong?

View 2 Replies

Resolved Integer Double String?

Sep 8, 2009

i've got another problem with my coding in this sub...

Private Sub buyLemon_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles buyLemon.Click
lemonL.Text += 1

[code]....

View 10 Replies

VS 2008 [RESOLVED] ListView Changes Mid Code?

Aug 27, 2009

This one is causing me a lot of frustration, and as far as I can see, it should work. What I have is a form with 9 ListViews (ListView1 through 9), and I want to add items to them.The issue is, I have a routine that sets which ListView to use. Say I have set it for ListView4, it works initially on the first file, but after one line of code. it reverts back to ListView1 for the remaining files. (itmModelItem = lvwModels.Items.Add(ModelName) in AddModel.

[Code]...

View 3 Replies

VS 2008 [RESOLVED] System.Net.Dns.GetHostAddresses

Apr 9, 2010

Yesterday s**ked, and today ain't (sic) looking better. I have an application I have been working on and it can be slow to start when my ISP is down because of DNS. My ISP was down for 3 hours yesterday, so I didn't think much about this piece of code I had added, until I found that it is always slow to start. This code is supposed to return your IP address and my reading of the link suggests that should be immediate, but it isn't, at least on my machine.Oh, and yesterday before the internet went down, I upgraded (oymoron) to XP SP3, and have had other problems.So my questions / request:

1. Am I doing this right?

2. If you run this on your machine does it take 39 seconds to return your IP address? [code]

View 11 Replies

[RESOLVED] Need Help With 8 Bit Binary Number Manipulation

May 4, 2012

GUI: textbox1.Text, button, textbox2.Text What i want to do is when the user inputs an 8 bit binary number The program finds the places of ones and outputs them For example: user inputs 00010011, the program outputs a 4,1,0 because the 7th place is the one closest to the left and the 0th place is the farthest, e.g. 76543210 is and in the 8bit string the 4th 1st and 0th are ones I was thinking of something like this:

[code]...

View 4 Replies

[RESOLVED] Simple 3D Graphics With DirectX

Jun 6, 2010

I'm just having some difficulty with nitpicky details. To give you a gauge of the level of programming I'm at I'll just tell you about some of the work I've done. Of course, you can skip down to the last paragraph if you don't have the time.I've created an emulator for a programming language I call "Blue Code". It's kinda a spoof on Redcode, which you may have read about before. You load programs which use simple commands like add, divide, copy, jump, split (like making a new thread), etc. You can load multiple programs in and each instruction sits on a line of a circular memory. Then each program takes turns trying to get the other to run an illegal function, at which time it looses. I think it's quite a bit better than Redcode actually.I also wrote a program a couple years back (when I was 13?) that draws fractal trees, it's quite fun.

So, I have a pretty good grasp on VB, but recently I got into 3D graphics using the Direct3D library. Unfortunately, the function I'm using to save meshes is not working. I know the rest of my program works just dandy because I've loaded quite a few sample meshes. Now, I've come to the conclusion that my saving code is irreparably broken, so I won't even show it to you. What I need is somebody to write an outline of what I need in a saving function, or, better yet, actually write a saving function which I can customize to my purposes. The parameters are, a somewhat unconventional List(of List(of CustomVertex.PositionNormalTextured)), List(of Material), and List(of String). List of lists includes a bunch of lists of vertices I wish to use, where each list represents a subroutine. The list of strings and list of materials represent texture file names and surface materials respectively.

View 3 Replies

[RESOLVED] Transfer Of Control Array VB6?

Dec 28, 2011

I have been programming in VB6 for a while now and am gradually trying to get to grips with .Net (VB 2005)I am tryng to transfer some of my programs from VB6 to .Net with some success but have got a little stuck on trying to transfer what was a control array to .neto try to sort this i have set up a form in VB6 with 4 Vscroll bars and 4 Text boxes.Vscroll1(*) & Text1(*) where * is 0-4when you change the value in any scroll bar then the associated text box value changes.

Private Sub VScroll1_Change(Index As Integer)
Text1(Index).Text = VScroll1(Index).Value
End Sub

[code].....

View 8 Replies

Forms :: Resolved Update Richtextbox On A Different Thread?

Nov 12, 2010

I've been searching around for ages now but can't seem to find what I'm looking for, anyway came accross this wonderful place so thought ay I'm creating a rewards system for school where pupil earn points for good behavior which they can then use to purchase things like a packet of pens. (They can also have points deducted for bad behavior)

View 2 Replies

Resolved Binary To Denary And Reverse Converter?

Mar 30, 2010

for homework an optional task was to create a binary to denary and denary to binary converter, using console application in VB.NET .. anyway i gave it my best shot however and it all works except for the denary to binary conversion, can someone please help me out? not been programming for very long so my code might be a bit messy or badly written i dont know,

[Code]...

View 1 Replies

Resolved Normalize Path With Length More Than 260 Chars?

Feb 8, 2010

My issue is to combine two paths which one or both of them may contain double dots. I used Path.Combine(string, string) and the returned string is still a long path as a result of concatenating these two paths. Single or double dots are not eliminated.

So, I tried to use Path.GetFullPath(string) method with the concatenated path as the argument.PathTooLongException is thrown because this path has more than 260 characters. However, if this path is normalized, it won't exceed the maximum characters for a file path.

[Code]...

View 5 Replies

Resolved Shut Down The Computer When System Is Locked?

Sep 21, 2010

In uTorrent the system shuts down whether the user is logged in or the system is locked, how is that possible?Also I would like to know how to detect if the system is locked or not because if they are logged in I, like uTorrent, would like to prompt the user that the system is about to shut down and give them 30 seconds to cancel it.

In addition to
Process.Start("shutdown.exe", "-s -t 05")
I also know about

[code].....

View 3 Replies

VS 2008 - FTP Exception - The Remote Name Could Not Be Resolved: 'unkn'

Jul 12, 2010

I have another problem:

Sub download()
Try
GetPass()
GetUser()
GetPath()
[CODE]...

Bolded line makes an exception: The remote name could not be resolved: 'unkn' I guess it has to do something with threading, and path doesnt generate correctly username, password, and pth are generated from objects in another form, so i did it like this: Dim newfrm As Form1

And then acces the objects that hold user, pass... like: newfrm.textbox1.text

So, why do i get this exception then if im doing it the right way, and how do i get this to work?

View 4 Replies

VS 2008 : Error - Web-exception : Remote Name Could Not Be Resolved

Nov 22, 2009

I am trying to read in a Web Page, using the code below.However it keeps failing when it runs the line s = client.OpenRead(remoteUri) The error I am getting is

The remote name could not be resolved:[URL]

Imports System
Imports System.IO
Imports System.Net
Imports System.Text.RegularExpressions

[code]....

View 14 Replies

VS 2008 [RESOLVED] Threads And Problem With Form

May 26, 2009

Hi

I have a thread that it calling many processes.

While the processes are executed (spends some seconds or minutes in completing all the tasks) I show form "Please wait to complete all tasks".

But one of these processes I have to show a form because the user has to choose a few data. But the problem is that this form is showed minimized.

Already I have tried to show it maximized and to bring it to the front but it does not do it.

how I can show this form to front and maximized?

My actual code is:




f= New frmLPlantillas
f.WindowState = FormWindowState.Maximized
f.BringToFront()
If f.ShowDialog() = DialogResult.OK Then
value1= f.xxxx
value2= f.zzzzz
value3= f.aaaa
value4= f.bbbbbb
Else
Return False
Exit Function
End If

Thanks in advance.

View 5 Replies







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