Social Security Program, How To Remove Dashes For Output

Oct 18, 2011

Hi, I am doing the SSN program.So when I type "345-584-5869", it should display "3455845869".I'm just learning how to use string manipulation.My problem is I cannot get all dashes remove when I output

' Name: Social Security Project
' Purpose: Removes the dashes from a social security number
' Programmer: <your name> on <current date>

[code].....

View 6 Replies


ADVERTISEMENT

Masked Text Box For Social Security Number?

Apr 10, 2009

(Goal)How do I display the number like below on MaskedtextboxSocial Security Number : 333-33-3333

View 5 Replies

Remove Dashes From An ISBN Number?

Aug 30, 2009

For example 0-619-15934-0 becomes 0619159340. I'm sorry if this is an easy question but I'm a noob when it comes to visual basic.

Here's my failed code.

Code:
Dim check, i As String
i = txtISBN.Text
If txtISBN.text = - Then
""
End If

View 1 Replies

Convert A Ten Digit Phone Number Without Dashes To One That Includes Dashes?

May 29, 2012

I am trying to convert a ten digit phone number without dashes to one that includes dashes.

4567891230 -->> 456-789-1230

the following code does absolutely nothing.

Code:
PTN = PTN.Insert(4, "-")
PTN = PTN.insert(8, "-")

View 2 Replies

Make A Message Posting Program For A Social Site?

Jun 8, 2010

My first project is a scraper program. I would like to see if anyone can send me code or a tutorial on how to do it. I would also like to learn how to make a message posting program for a social site.

View 1 Replies

VS 2010 Instant Messenger/Social Network Program?

Feb 14, 2012

And i'm trying to start a Instant Messenger/Social Network like XFire, so I would like to know questions like,How would I get started? I know and like VB but is that too simple, i'm learning C#/C++ also Would I need to host a server?

I would like it be able to do:Instant Messanging A home screen with you to able to launch programs Be able to check if a user is offline or online and what game they are playing A buddy system

View 2 Replies

No Output In Asynchronous Program - Retrieve Output After The Events Are Invoked?

Mar 1, 2012

What I am trying to do: There are three powershell scripts with different time delays as shown below.I am trying to run them asynchronously in .NET and I followed this article to implement Asyncrhonous programming. Where I am stuck:The I am not able to retrieve output after the events are invoked.The scripts are being called but then the program ends and it shows "Press any key to continue" in console windows.I don't what I am missing here.

Info: JobRequest is a class that I use to pass around information keep track of jobs.

Sub Main()
OurAsyncFunctionCalling("psDelayScript2.ps1", "-arg1 4 -arg2 5", 1)
OurAsyncFunctionCalling("psDelayScript1.ps1", "-arg1 2 -arg2 3", 2)[code]......

View 1 Replies

Remove XML Output File?

May 4, 2010

What i have realized is that when you use My.settings, a XML File is put with your EXE when your project is Published.

What you can also do is just Open that File and Change the Variable "Register" From "False" to "True"

How can i do what Most Registration files do, and make the XML File go away and Create a Unwritable file, where the values cannot be changed.

View 1 Replies

Remove Special Characters In Redirected Output?

Nov 11, 2009

I'm redirecting a acronis cmd script to a text box, when its running it looks like this[code]...

im trying to capture the percentage so it can be used for a value in a progressbar. my question is how do i remove the (.)%# characters and where do i put the code i need? the update text box was needed to update the progress but without the Form3.status.Text = "" it made a new line with every percent increment

View 10 Replies

Make A Security For The Program?

Nov 24, 2010

How can I make my program to work only for certain period of time?Say... I want my program available for only One hour or Two days or one month or etc...

View 2 Replies

Implimenting Security Measures In A Program?

Nov 12, 2008

I am writing a parental control type program for use on 2K, XP, and Vista.There are two specific features I need to address, but I am at a loss as where to begin or how to impliment them.Feature 1: Prevent anyone except the program's administrators (2 designated within the program) from modifying the programs directory and/or its contents.Feature 2: Prevent anyone except the program's administrators from stopping, killing, or ending the program.Also, which would be a better way to start the program with the system, as a process or with the registry

View 4 Replies

Getting The Last 4 Of A Social SSN From A Full SSN In A Masked Text Box?

Jul 28, 2009

Basically I am doing a weekly assignment for unit 7 where I have to use Data bases.... I have everything going fine I used VB studio to set up most of my relationships between the Data base and VB.I have a text box called txtLast4OfSSN.Text that I need to get the last 4 of a social security number.

Now this should be simple I have another box ( a Masked Box for SSN) that has the SSN in it... This box is called m_SSN.Text....... Now I figured it would be easy, and that I could just use the Substring(7, 10) to get those numbers :*( However its not working and I am getting an error as follows:"Index and length must refer to a location within the string. Parameter name: length".Here is my complete code with my two buttons its mostly in the second event procedure that I have the code specifically for getting the last 4 of the SSN:

Public Class frmInstructorTable

Private Sub StudentsBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StudentsBindingNavigatorSaveItem.Click[code]....

View 12 Replies

Encryption Of A Text File + Decryption For Security Program?

Feb 10, 2011

What I've decided to start working on is pretty much a personal project but something I may use in my UNI course in due time. I'm creating a security program with a set of access codes (yes I am a bit of a star trek fan) - 4 in total to be exact. I want to be able to use an Encrypted key file in form of a simple notepad created text file to update the codes at any due time. All I'm looking to do is write the access codes to the text file (say for a friend to use the program), Encrypt the file through the program and be able to also decrypt to obtain the new access codes on demand also via the same program. Once decrypted the codes can be read and verified if the user has entered each one correctly. I could hard code the access codes into the program but would rather do it the way I've thought of.

Back in the days of the old VB6 there was a simple method but for some reason that doesnt work any more. What I guess I'm looking to do is have 4 text fields where 4 digit access codes are typed into, have the program take them and encrypt each one is then written to the text file. Hoping that will make it a bit clearer what I'm trying to achieve as I think I made it sound like I want to encrypt the text file after the info has been written to it, which is of course one option so wouldn't mind know how to do that too!

View 3 Replies

VS 2008 Execute A CLI Program And Have It Output Or Return What The CLI Program Saids Such As Ping Etc?

Apr 25, 2009

Is there a way i can execute a CLI program and have it output or return what the CLI program sais, such as ping etc.

View 3 Replies

Create Social Networking Site Using 2008?

Jan 2, 2009

A peaceful 2009 to everyone! How could i create a social networking site using visual asic.net 2009, i will need reports as administrator, kindly email your answer to {REMOVED}

View 5 Replies

C# - Send A Mail From An External Program Through Outlook With No Security Warning?

Feb 15, 2012

When I send a mail from my external program through Outlook, then I get the security warning.

I've tried bypassing it with secman and redemption, but both these tools doesn't allow the app to be "Any CPU".

I need the app to be Any CPU because it must be x64 on client and x86 in design (since designer doesn't allow inherited forms on x64).

So how would you go around Outlook security?

Should I write some kind of TCP-listener-Outlook-Addin and then send a TCPIP from client with mail info?

View 1 Replies

IDE :: Open A Program Written VS 2008 In VB2010 And Get Security Error

Sep 6, 2009

After upgrading code to VS2010, the error "MSB3134: The permission set requested by the application exceeded the permissions allowed by the Internet or Intranet zones. Select Full Trust or to continue using partial trust, define your custom permission set in the Security Page of the Project Designer. Bentley Software Loader". The same code ran fine in VS 2008

View 3 Replies

VS 2008 Hidden Dlls - Security Program That Monitors The Keystokeswebsitesprocesses

Dec 30, 2009

I have created a security program that monitors the keystokeswebsitesprocesses... I want to FIRST ask if this is a legal question; for, my purpose in this program is security reasons (eg. following up on employees to make sure that they are doing what they are paid to do. They all know this is running, and have been warned not to go to sites and enter information they do not want reviewed).

Second, I want this program to be hidden so that techy persons cannot go into task manager and end the process, then go on to some porn site! How could I make this app hidden, or at the very least make it 'un-end-able' from the task manager?

View 5 Replies

Removwe Dashes From A String?

Feb 18, 2009

I have a String that looks like 00-00-00-B3 and I need to remove the dashes from it so it looks like 000000B3.

View 4 Replies

Creation Of Program To Create Security Code Based On Current Date?

Apr 3, 2012

I need some help in the creation of a program to generate a security code based on the current date. I need to create something that first multiplies the MMDDYY (ie X=MM * DD * YY) then also adds the MMDDYY then finds the remainder and then multiplies but a specified number. I would like to create a small program that sits in the system tray with this code displayed. The code will always need to be 6 characters, so I might need to pad it with zeros. It has been years since I took basic VB, and I am really rusty.

View 1 Replies

Social Networking Website :: Way To Implement A 'user Search' In Memory (no SQL)?

Jul 26, 2011

I'm writing a social networking application in VB.NET, with a target userbase of 1-2 million users. All user data will be in memory in a dictionary of 'User' objects with properties such as Country, Region, Age etc exposed. I need to perform search against multiple user properties in memory - I'm not using SQL.What's the most performant way to implement a 'user search' against multiple properties?

View 1 Replies

Ignore Dashes In Values When Importing XLS Into SQL

May 12, 2009

I have an xls file that needs to be imported into SQL Server directly from .net. I figured out how to do this, but now my problem is the data. The following data is in the xls file: Name, Address, City, State, Zip, Phone. The phone number can come in in various values (with dashes and without). I have no way of controlling this data because it is an export out of some third party application. My problem is that the numbers with the dashes are being ignored by the Excel import. I am using the OPENROWSET to import.

View 5 Replies

Importing Xls Data Into Sql - Numbers With The Dashes

May 12, 2009

I have an xls file that needs to be imported into SQL Server directly from .net. I figured out how to do this, but now my problem is the data. The following data is in the xls file: Name, Address, City, State, Zip, Phone. The phone number can come in in various values(with dashes and without). I have no way of controlling this data because it is an export out of some third party application. My problem is that the numbers with the dashes are being ignored by the Excel import. I am using the OPENROWSET to import.

View 1 Replies

Replace Dashes With A Solid Line?

Feb 23, 2012

I am using word 2010 VBA to clean up a "dot matrix" looking report. One thing I want to do is replace a row of dashes with a solid line. I think the code would look something like this:

count strings = "-------------------"
for each strin (i)
select string
delecte selection
move up
insert solid line
next (i)

Or if it can be done as a find and replace all that would be even better, but I cannot find how to replace a row of dashes (text) with a line object.

View 1 Replies

Add Dashes Automatically While Typing A Phone Number

Mar 31, 2010

I have searched on google and asked friends, but have not figured out a way to add dashes while a user is typing either a phone number or a social security number or something of the like. I am using Visual Studio 2008, VB Windows Form. This is not for homework but I enjoy adding things to certain projects and thought this would be neat to incorporate into one of mine. I am also curious about allowing the user to enter the first three numbers for their area code and then send the focus to the next text box so that the user can type the rest of their number. I was thinking I could do something with the text box text entered event procedure where I would send the focus after three characters entered. Not 100% on the entire idea or if there is an easier way.

View 1 Replies

Disregard Dashes In All Number Regular Expression

Jul 18, 2011

I'm trying to use regular expressions to take this number and only filter out any dashes, and just see a number:1-742-852-5412..I've tried ^d{7,}$, however, it doesn't recognize the numbers becuase it's including the dashes. how put together a regular expressions this disgregards the dashes?

View 7 Replies

Game Programming :: Display In A Label The Appropriate Number Of Dashes?

Oct 12, 2004

I trying to display in a label the appropriate number of dashes based on the number of letters in a word that the first player entered.

Basically, when you click play, the first person enters a word, then the second player guesses what it is. That person has 2x #ofletters of incorrect tries. I just need to figure out how to get the dashes to display based on # of letters and not a preset one of 5 dashes. The original program accepts only 5-letter word so that line of code is Me.lblWord.Text = "-----". I have modified it so the user can enter any # of chars. I tried making the above line with a lot of dashes so it but the leftover dashes will stay there and the game won't end. Here is what i have right now for my play button:

Private Sub btnPlay_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPlay.Click
'simulates the Hangman game

[Code]....

View 5 Replies

Output Of The Program Segment?

May 12, 2010

What is the output of the following program segment?

[code]...

View 11 Replies

Mortgage Amortization Program Output?

Jan 26, 2009

I am suppose to be creating a mortgage amortization program that calculates the monthly payment and the amortization table for a mortgage based on user input of the mortgage amount, the interest rate and the length of the loan. I have worked on the program all week and finally got the program to compile; however, the interface does not give me any output. I already posted the assignment yesterday and am getting a C in the class but each week the program builds on the last week? Attached is the complet VB 2005 project file.

Public Class MortgageCalc 'Forms Click Event Handler
Private Sub MortCal_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click
End Sub

[code]....

View 3 Replies

Redirect Output To Window Within Program?

Dec 21, 2011

I made a Visual Basic program that adds an interface to some Windows network diagnostic tools like Ping and Telnet. Currently the program opens a new DOS window and displays the results. For each system you test or each time you hit the button it opens a new window.

What I want it to do is redirect the output back to the program and display it using a List box or whichever is the best choice for displaying results. I have checked out posts that talk about capturing the text and redirecting it back to the program but I can never get those to work.

Is there an easy answer for this or does it entail a lot of additional coding? I am using Visual Studio 2008.

View 1 Replies







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