Why Does Regex Ignore Plus Or Minus Signs

Jun 21, 2012

No matter what I try, it never matches the sign. I even tried using the string as the pattern. This function should be able to take a string like 1 day -36mins + 2s -1s and parse it into a TimeSpan object. Any pointers?

[Code]...

View 1 Replies


ADVERTISEMENT

Ignore Curly Brackets In Regex Expression

Nov 14, 2011

I am trying to build an application which does the following :

1) write some text in a richtextbox

2) when user clicks a button, the app will replace the text with another text in {} braces.

what I want is that the next time, the regex searches for any text it should exclude those which are present in {}. for eg : my world is good world and a happy world and will be a better world for everyone. first pass - change word "world"

[Code]....

View 1 Replies

Keep A Log Of Who Signs In?

May 22, 2009

I want to create a log that shows when users sign into this program, so I can see who makes changes to it. What is the best method of doing that?

View 5 Replies

.net - Using Two Equals Signs In VB 2008

Feb 6, 2012

In code, why wouldn't this work? intMax = intTopValue = 20

View 2 Replies

Using Two Equals Signs In VB 2008?

Feb 13, 2011

In code, why wouldn't this work?

intMax = intTopValue = 20

View 1 Replies

Sign Out User If Someone Else Signs In With The Same Account

Sep 28, 2009

Sign out user if someone else signs in with the same account Anyone have code in VB that will do this?

View 3 Replies

SQL - Pound Signs Disappearing From Strings

Jul 22, 2010

I'm usually a LAMP developer, but some .NET work has arrived. If I run the following code:
<% poundsign = "£" %>
<% Response.Write poundsign %>
<% Response.Write "£" %>

Nothing is displayed. However, outside of the <% %> tags (i.e., in the HTML) £ displays correctly. I have no trouble displaying the usual alphanumerics, it's just the £ sign that is proving problematic. The underlying file is in Windows 1252 encoding, and I need to serve it as such. If I save the file as UTF-8, I get mojibake instead of a £. What I can do to make this work, or any settings that might be preventing it from working (other than saving the file in a different format)?

Aside from the fact that my £s aren't appearing on the page, a major part of my problem is that I need to insert strings containing £ into a SQL server database, but if I form a SQL INSERT statement within the ASP, none of the £ signs end up appearing in the database. Inserting £ signs into the database from ASP isn't a problem when I save the .asp files as UTF-8 files, but I need everything to work in Windows 1252 encoding.

View 4 Replies

Storing Equal Signs (=) In XML Documents?

Sep 10, 2010

I'm facing a problem that Google couldn't solve yet!I'm trying to store URLs in an XML file. Problem is that these URLs contain Equal Signs (=) in them. And that generates an error.Here is my code: (**token is a variable that contains the URL)

Dim child As String = vbCrLf & "<Link URL='" & token & "'></Link>"
Dim fragment As XmlDocumentFragment = doc.CreateDocumentFragment
fragment.InnerXml = child

[code]....

View 3 Replies

Display Multilines And Dollar Signs In Labels?

Sep 22, 2011

I'm just starting to learn VB and I can't seem to get the label to display 4 separate lines that I wanted it to. It always seems to display Grand Total: (number)[code]...

View 7 Replies

Display Three Rows Of Percent Signs In The MsgLabel?

Nov 7, 2011

We were given this and for some reason I can't get this to work right. Here is the whole thing:The following code should display three rows of percent signs in the msgLabel. The first row should contain one percent sign, the second row should contain two percent signs, and the third row should contain three percent signs. However, the code is not working correctly.

[code]...

View 17 Replies

Display The Number With Two Decimal Places And Dollar Signs?

May 7, 2009

I need to write a program that uses constants to establish the base pay, the quota, and the commission rate. The Pay menu item calculates and displays the commission and the total pay for that person. However, if there is no commission, do not display the commission amount (do not display a zero-commission amount).Write a function procedure to calculate the commission. The function must compare sales to the quota. when the sales are equal to or greater than the quota, calculate the commission by multiplying sales by the commission rate. Format the dollar amounts to two decimal places; do not display a dollar sign.The summary menu item displays a message box that holds total sales,total commission,and total pay for all salesperson. Display the number with two decimal places and dollar signs. the Clear menu item clears the name, sales, and pay for the current employee and then resets the focus.The Color and Font menu items should change the color and font of the information displayed in the total pay text box.Use a message box to display the program name and your name as programmer for the about option on the Help menu.

[code]...

So the issue is when I push the pay/calculate button everything is calculating correctly the first time, but then when I push clear to input another workers name and weekly sales and push calculate, my label is blank and does not display any info about the second worker. Then when I push summary after inputting the second worker, it's only displaying the total calculations of the first worker. I can't seem to figure out this problem on my own (After countless hours staring at my code I might add!), so I am hoping somebody can pinpoint what I have done wrong? EVerything else is seeming to work just fine.[code]...

View 1 Replies

Redirect Console Output To Look For Signs Of Command Failure?

May 27, 2011

I am running a command on all computers from a list. I am trying to get back a text file that says PASS or FAIL for each computer. I am using the below StreamWriter and function process. The process runs correctly and it rights to both a data file and an error log. The error log however always says PASS for everything. do I know what to set the if consoleOutput = "????" to?

Using swrr As New StreamWriter(ErrorLog, True)
For Each strUserName As String In strLines
Dim ConsoleOutput As String = GetCMDOutput(strUserName, saveFileDialog3.FileName & ".txt",

[code].....

View 1 Replies

VS 2010 - How To Use Mathematical Signs As Label Text Randomly

Oct 29, 2011

How to use the signs "+", "-", "*", "/" as label text randomly. I am trying to create a math game for my kids. There I need a random sign to display every time they get new question to solve. I am able to display values [random numbers] but could not able to use this signs randomly as a single label text.

View 8 Replies

Add A Minus Function To My Calculator

Jul 22, 2010

I am new to the MSDN forums and was wondering if you could kindly help me with a learning project.I have created a calculator with a simple addition function button and was wondering if the method I used to create it is efficient and how I may go about adding additional functions such as a minus function.Will my current code allow m to implement a minus, multiplication, or division function easily?How do I add a minus function and would adding a multiplication or division function? Also would can I use the same global variables to do this.[code]

View 1 Replies

SQL Incrementing In Minus Steps?

Feb 17, 2009

I have created a table with the following fields

loan_id (PK)
loan_date
loan_return_date
loan_user (FK)

i have set the loan_id column to increment in steps of 1, but when i add a column in visual studio 2008 express it auto increments in minus steps -1 -2 -3. it increments in positive numbers?

View 5 Replies

Saving Information So Program Remembers Next Time User Signs In

Feb 25, 2010

i want the user to login, and the first thing is, having the text document for that(if theres a safer way to do it, let me know) then it goes to the weekly sales page, but theres also the goals for the sales, which rarely change, but if they do i would like them to be able to change them, then next page is the list of the workers, and if they need to i would like them to be able to add workers. so my question is: is there anyway that maybe i could save both the goals, and the workers in the text document, and when they need to change it/add workers it will save it in the text document and the next time they sign in the changes will be permanent? also is there a way to delete the user once they have been created, other than going into the txt document and deleting it.

View 2 Replies

Get Current Time Minus One Hour?

Nov 20, 2010

I have 2 datetimepickers. I want one to display the current time and the other to display the time one hour ago: So far I can getb them both to display the current time:

Code:
Dim TimeInterval As Integer = 60
Private Sub SustomizeGraph_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
TimeTo_dtp.CustomFormat = "HH:00"

[code]....

View 2 Replies

Why There Is Minus Sign In SQL Before Math In Parentheses.

Jun 4, 2012

I'm trying to learn LINQ to SQL. I've run into something I just don't get.Here's the LINQ program:[code]What I don't get is why there is a minus sign in the SQL before the math in the parentheses.I didn't specify that in the LINQ query.

View 6 Replies

Add A Minus Sign In Front Of Text Automatically?

Dec 6, 2009

I am creating a drawer count program and for cash in and such I need it to add a minus sign when the user leaves the text box. I have tried the Append Text Command but it adds what I've typed in already to it like this 10.00-10.00 and that's not what I want, I want it like this: -10.00

View 3 Replies

C# - Use System.Threading.Interlocked.Decrement Instead Of Minus?

Dec 1, 2009

I converted some c# code to vb.net and the converter.telerik.com turned this: i--; into this: System.Math.Max(System.Threading.Interlocked.Decrement(i), i + 1)Whats up with all the fancy-ness?

View 5 Replies

Collapse All The Procedure Pressing The Minus Icon?

Feb 23, 2010

i am trying to collapse all the procedure (pressing the minus icon). is there away to perform collapse all?

View 3 Replies

Converting String Into Number Minus Commas?

Feb 20, 2012

I'm having trouble getting information from a webpage. I've managed to collect a specific string from the webpage, and I want to convert it into a number, but the problem is, is the number is into the thousands, and it can't convert right normally. How could I convert the string, to a number, minus the comma(s)?

View 9 Replies

Minus An Integer From Database (from Columns In 2 Table)?

Jun 27, 2009

-in my database..there are 2 tables..

1)Leave_application
2)Staff

-how do i type the code to minus out the number from "Leave_balance" (in the Staff table) with the number from "Days_apply" (in Leave_application table) eg: 10 days (from "Leave_balance" Staff_ID "S0001") - 2 days (from "Days_apply" ID "abc") = 8 days and then update the "Leave_balance" of staff_ID "S0001" with 8 days

View 3 Replies

VS 2008 Variables That Don't Work On A Minus Calculator

Nov 4, 2009

I am making a calculator at the moment and the plus works and so does the minus well the minus does the FIRST time but not the time after that.you would normaly get 2, but instead it says that the answer is -3.I have attached the calculator so that you can have a look.

View 3 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

Current Date/time And Minus The Column 'LastTransactionTime'?

Jul 28, 2009

How to I look at the current date/time and minus the column 'LastTransactionTime' to find anything in the 10 minutes?

View 4 Replies

Minus An Integer From Database (from Columns In 2 Table) In Vb2005?

Jun 28, 2009

-in my database..there are 2 tables..

1)Leave_application

2)Staff

-how do i type the code to minus out the number from "Leave_balance" (in the Staff table) with the number from "Days_apply" (in Leave_application table)

[Code]...

View 3 Replies

VS 2010 Get Length Of String Minus The Line Feeds

Jan 27, 2012

Need to get length of a string minus the line feed chars and came up with this. Is there a better/more efficient way?

Function GetLenMinus_LF(s As String) As Integer
s = s.Replace(ControlChars.Lf, String.Empty)
Return s.Length
End Function

View 5 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

C# :: Can The .net Reportviewer Control Be Fully Operated By Code Only (ie., Minus The Toolbar)

Aug 1, 2011

Just started on a touchscreen based project that uses the reportviewer control. I will obviously be putting my own big buttons for report navigation , export to pdf etc since even people with tiny fingers will have a hard time clicking the out of box toolbar that comes with this control (see below screenshot). Can I do all of this from code 1) Show next / prev/first /last page of report

View 1 Replies







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