[2008] Make The Program Support Some Letters?

Jan 7, 2009

i have a Program that filters out Text from a site but when Characters like:� � � � are there it makes them to: ?How can i make them show right in the Program?

View 6 Replies


ADVERTISEMENT

Make A Program That Generates A Combination Of Letters?

Feb 8, 2011

How can i make a program that generates a combination of letters,starting from user-specified to the end of the user-specification. here is an example of what i mean:

aaa
aab
aac
aad
aae
and so on...

How can i make this?

View 1 Replies

Make A Program That Translates Binary Code Into Numbers/letters?

Nov 11, 2009

I'm wanting to make a program that translates binary code into numbers/letters and numbers/letters into binary code. I know the general system of binary code, but I dont know how to translate anything with VB.net. Is there a general command I need to use or can someone link me to a good tutorial about translating?

View 2 Replies

VS 2008 Make App Read The Letters?

Jul 12, 2010

I'm retrieving some norwegian letters for my application. I know that the norwegian letters has something to do with:iso-8859-1 But I have no idea how to implement it in my application.

View 5 Replies

VS 2008 Make A Textbox Change Some Letters Within Textbox When Click A Button

Jun 29, 2009

I want to make a function in VB 2008 with which u can make a textbox change some letters within the textbox when u click a button. So example: Textbox1 has got in it: url...Then when I click button 1, it has to change ....

View 8 Replies

Make VB Code To Take Apart A Word To Make Sure It Has Required Letters?

Sep 10, 2010

I've been looking through the book I own and I've been looking online but I just don't understand what code would I write to have it check the text box or input box for the right letters in a word?

View 2 Replies

How To Make My Proxy Support SSL

Jul 7, 2011

using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.IO;
using System.Threading;

[Code]...

Now everthing works but always when I want to acess a https site it fails but I dont know what to do ?

View 1 Replies

Make My App To Support Cloud?

Apr 1, 2012

I would like to ask : how can i make to support the cloud technology.

Do i have to first find a server that provides cloud services ? Or does the user provide his own custom credentials and server somehow ?

Also, what .NET technology is there for cloud services ? Azure ?

Do you know any good examples / website for that ?

If i develop for Azure will the same code run also with Amazon web services ?

View 3 Replies

Make Sure Strings Contain Only Letters?

Aug 24, 2010

I'm entering data into a text box, and I want to make sure the data I enter contains only letters. Is there any way in Visual Basic that I can go about doing this?

View 7 Replies

VS 2008 Make Button Open A Program And Make It Windows Size?

Aug 23, 2009

How do i make my button open a program and make it windows size?

View 6 Replies

VB Program- Count Letters?

Nov 4, 2011

i cant get it to work.I am creating an application on visual basic that displays the number of times a specific letter occurs in a word or phrase. (both upper and lower case counts)So far this is what i have, and its not working:

private sub BtnCountLetter_Click(ByVal sender As object, ByVal e As System.EventArgs) Handles BtnCountLetter.Click
Dim strText As String

[code].....

View 20 Replies

How To Make Random String Of Just Letters And Numbers

Jan 17, 2012

I have to (for class) make a program that generates a safe passwords for people to use. My teacher wants us to make the passwords vary in length, include numbers, letters and upper case letters. I've been able to write code that prints out a random string but it includes unrecognized characters for most passwords. How would I write the code to create a random string that has parameters? (in this case upper case lower case letters and numbers).

View 9 Replies

Make A Textbox That Just Write Number Not Letters

Jun 9, 2009

how can i make a textbox that just write number not letters

View 2 Replies

Forms :: Make A Textbox With Complete Support For Dragdrop?

Oct 30, 2009

I am trying to make a textbox with complete support for dragdrop, however, it doesn't work.

Private MouseIsDown As Boolean = False
Private SelectionLen As Integer
Private SelectStart As Integer

[code]....

View 1 Replies

Make The Textboxes Only Accept Letters A, B, C, Or D As Answers From The User?

Nov 15, 2011

I'm having trouble with the Try...Catch code. I'm trying to make the textboxes only accept letters A, B, C, or D as answers from the user. I'm also having trouble matching the two arrays. I wanted it to be like if textbox1 is A then it is correct but in a loop. Please take a look at my code.

This is the programming challenge instruction for reference: The local Registry of Motor Vehicles office has asked you to create an application that grades the written portion of the driver's license exam. The exam has 20 multiple choice questions. Here are the correct answers to the questions:

[Code]...

View 9 Replies

Make TxtState Control To Only Accept Letters And The Backspace Key?

Oct 14, 2009

I have an assignment that requires me to edit some code, I already did most of it but I need to make txtState control to only accept letters and the backspace key. I was never taught how to do this and I only know how to do it with numbers. Here is my code with everything done, including the format I was taught to do keypress in with numbers and backspace. Can someone show me how to replace those numbers pr whatever to work with letters?

[Code]...

View 3 Replies

VS 2008 Make A Program That Searches For A RGB Color And Clicks On It WITHIN The Program?

Apr 3, 2010

I want to make a program that searches for a RGB color and clicks on it, WITHIN the program.

View 2 Replies

Write A Program That Requests A Word Containing The Two Letters?

May 25, 2009

(Write a program that requests a word containing the two letters r and n as input and determines which of the two letters appears first. If the word does not contain both of the letters, the program should so advise the user.)I got the program to work but he said its wrong because we need to have it looping and if one of the letters is missing you also have to say which one is missing.I have some of the pseudo code but I don't know how to make it work.If Index of("R") = 0 or index of ("N") = 0 Find out which is missing and display message.Else Find larger and display message.

[code]...

View 1 Replies

Write A New Program To Remote Into Our Tech Support Computers?

May 18, 2011

I am tasked to write a new program to remote into our tech support computers to help them out while they are trying to remote into their computers to see what is up if they are having problems. I was asked to be able to not move their mouse if they were in Word, Excel, in an application writing a problem ticket,

View 1 Replies

Wpf - Support For Enter Key To Make Focus Moving In A Text Column Of The Listview?

Sep 19, 2010

I created the following view

<ListView.View>
<GridView>
<GridViewColumn Header="Tester"

[code]....

Now what I suppose is that, After I entered something in "Comment" field and press the Key "Enter", the next row of the "Comment" field will get focus.

I added the following code of the event "PreviewKeyDown", but it seems that the next whole row will get focus not only the "Comment" field...

Private Sub TxtComment_PreviewKeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Input.KeyEventArgs)
Dim focusRequest As TraversalRequest
Dim focusedElement As Object = sender

[code]....

View 2 Replies

VS 2010 - Adding Drag And Drop Support In Renaming Program?

Sep 12, 2011

I am trying to make a renaming program, which I have done, but wanted to add drag and drop support. Firstly, when I drag and drop the files into a listbox they appear to be going in and are ordered randomly. I want them to go into the order they're dragged in. Secondly, instead of having the entire path such as:
D:TVThe Big Bang Theory SeasonSeason 1The Big Bang Theory S01E01 - Pilot
I want just "The Big Bang Theory S01E01 - Pilot" to go into the listbox.

View 11 Replies

Get The Program To Check If The Inputted Word Has Ascending Alphabetical Letters?

Sep 30, 2009

how do I get the program to check if the inputted word has ascending alphabetical letters

Public Class frmAlphabetical
Private Sub btnPress_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPress.Click

[Code].....

View 4 Replies

NumericUpDown With Letters - Show Only The Range Of Letters

Apr 2, 2012

I'm keeping track of some things that are numbered and others that are lettered; while NumericUpDown is perfect for selecting numbered things, I need an analogue for selecting lettered things. The obvious choice would be a listbox that just contains all the letters of the alphabet. But I need to show only the appropriate range of letters, so if I want to use a listbox, I need to write a function that populates the listbox with the first n letters of the alphabet; if n > 26, it should continue with aa, ab, and so on. How do I do this?

View 17 Replies

If Compile A VB6 App On Win7 - ADODB.Connection Errors With "Class Does Not Support Automation Or Does Not Support Expected Interface"

Apr 28, 2011

I compiled some VB6 code on my Win7 x64 machine and the result .exe will not run correctly on any other machine. VB6 code is just a new template .exe file with one button, a reference to "Microsoft ActiveX Data Objects 2.6 Library" and the following code in the button press event: Dim db Set db = New ADODB.Connection It runs correctly on my machine, but no others (even other Win7 x64 machines) (Update: I found TWO other users where it runs and one of them is Jeff Atwood!, but most machines have the same problem)

[Code]...

View 2 Replies

VS 2008 - Multilingual Support - From VB6

Jul 16, 2010

I am currently working on converting an app from VB6 to VB.NET 2.0 - I am only using 2.0 to provide Win 2k compatibility, AFAIK, Win 2k can't run any framework newer then 2.0. Part of the conversion includes moving multilingual support over. In the VB6 version, we were storing the translated text in an Excel document - the xls could be passed to translators. A script in the xls file would dump the languages to individual text files and generate a LanguageRescource.rc file which was then compiled using RC.exe.

When the app started or the user selected a language, the resource file was read using:

Public Sub LoadLang(ByVal LangNum As Byte)
Dim bData() As Byte

[CODE]...

It was then split using vbNewLine as a delimiter and the lines assigned to the labels and to a public array for use in other places in the program (message boxes, log files, etc). Doing the same thing in .NET doesn't seem possible, or is rather convoluted. I have read many articles on globalisation, localisation, etc and it doesn't make a whole lot of sense to me. I am wanting to have the language files built in to the executable, not as dependencies. From what I can tell after reading all of this information is there are at least 2, if not more to do it.

1) Use form localisation. This would require changing all the captions and things for each language, this would in turn generate frmMain.<lang>.resx files.

The correct file would be loaded automatically on form/program startup and is hard to change at runtime if the user wishes. it would also cost me a fair bit of time to add every one of the 23 languages. It also would not satisfy my other requirements of message boxes and output to log files.

2) Make a resource file and store the strings in there, in a similar fashion to what I was doing in VB6. The problem is, how do I separate each languages strings? Each resx file only seems to be capable of storing on string table.

View 4 Replies

VS 2008 Set 2 Url Support For Update?

Sep 21, 2010

httpclient = New WebClient

[Code]...

View 1 Replies

VS 2008 Remote Support System?

Jul 4, 2010

I am wanting to make or have someone help me make a remote support system. I would like it to have a ticket system interegated into it, but if it would be easier to just have the remote support, then I'll just stick with that. I am wanting for my client's to download the client version and then connect to it. Then they give me their IP or some code that I type in and connect and control their computer. I give technical support.

View 5 Replies

VS 2008 What Is The Listview Max Item Support

Jan 15, 2010

listview as a max number of items??if so how i can give it the possibility to read more item?

View 6 Replies

VS 2008 Only 20 Letters Per Line?

Mar 31, 2009

i have a textbox full of names and names can only be less then 20 letters so if there is a line with more then 20 letters how can i delete it with code ?

View 2 Replies

[2008] Get Letters To Each Harddrive

Dec 30, 2010

I want to get letters to each harddrive I have recognized in WMI . I give an example:I have:

1x HDD (400 GB) Samsung (fixed) - 4 partitions (one of them is for Linux, the biggest problem!)
1x HDD (250 GB) Seagate (external) - 1 partition

And in Windows I can see 4 harddrives. So the thing: How can I get exact letters belonging to Samsung, and letter(s) belonging to Seagate? Make sure, that user can have more drives and more partition (maybe Linux too) ... I can divide my Seagate too, like 20 GB and 230 GB ... you know. I've checked much things in WMI like Win32_DiskPartition, but it does not help me so much ...

View 16 Replies







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