Answer Questions
tall_matt Create a structured text file
I would like to know if anyone know how I can create a text file or whatever by the VB Express Edition that by the user interface they write their names and adress and other stuff like this then the program get all this information make an structure with this information and print everything estructured. For example I have two textboxes: 1o txtbx - The user types his/her name (Eg.: Caroline) 2o txtbx - The user types his/her adress (Eg.: 5th Avenue) Then the person click a button the program gets this information and put it in a text file like this Name: Caroline Adress: 5th Avenue And print I reallly apreciate your answer The above code helped me also as I am fairly new to ...Show All
D A V using voice commands in VB express edition
I want to be able to use voice commands for when a button is clicked. For example, a button called 'Address' speaks out 'Address' back to the user. Any idea how to go about doing this You could save a .wav file for each control that you want to play audio for, then in the controls event handler, just run the .wav file. ...Show All
Bodylojohn Hyperlink to Local File ?
hi all how to set the Hyperlink NavigateUrl Property to a local file , programmically something like hyperlink1.navigateurl = @"file://" + locallink ; but always comes with this symbol "#" when run and that's prevents viewing the file thank you where are you people Hi, KAAU You can use process to do it. For example: System.Diagnostics.Process.Start(@"C:\FolderName\Filename"); Thanks ...Show All
Chris Crowe i need help on making anti porn programe
hi every body i heared about aprograme called anti *** programe this programe block any such sites when the user try to open it but this programe use very large data base containig this sites iam trying to make programe like this programe but i have diffrent idea i will make the programe chek what has written in the addres bar if the address bar contain any of certain words the intrent explorer open other site or open blank page ..... see you ...... iam waiting for your sweet posts the reason being because Windows Service runs under a different account (The Local System account I think) and is different to your useraccount when logged into your computer. You would need ...Show All
tongyong one last question with a boolean
well i have one last question on my program like before. the idea of it is to type in a child's last name and it will read from a txt file with all its info and bring out the info in a rich txt box. otherwise it will say "child not found". well right now no matter what i put in im getting "child not found" Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim strChildFirstName As String Dim strChildLastName As String Dim chrChildGender As Char Dim strParentLastName As String Dim strParentFirstName As String Dim chrParentRelationship As Char Dim decAnnualIncome As Decimal Dim intParentAge As Integer Dim intNumberOfKids As Integer Dim Readfile As System.IO.StreamRe ...Show All
mitasid Visual Build Pro scripts
We have lot of 'visual build pro' scripts that do our day-to-day work. Is it possible to use those scripts in TFS(i.e call visual build pro scripts thru team build) Also, if yes.. is it a good idea to do this I imagine that you can call these through Team Build - the Exec task available within MSBuild can execute any custom command-line you would like. As for whether this is a good idea - I have no idea, since I don't know what your scripts are for! Things to watch out for, however: * You will need to make sure that the scripts are installed on all your build machines. In general, if you are going to use scripts within your build process it is a good idea to version them (so that builds can be recrea ...Show All
Igor B. Textbox
Hi, I made a program with a button and a textbox. (for example) the default textbox text = ("1 and 2") i want to : when the button is pressed if the textbox text has the word "and" doesn't metter if it is "1 and 2" or (e.g.)"a and b", just need to have the word "and". If it has messagebox.show(something) how do i do it Thanks Of you can use the instr method which will give you the position of the first occurence of the word "and". If there is no occurence it will return 0. This works in all versions of VB from 1 -> .NET 2005 if instr(Me.textbox1.Text,"and") > 0 then MessageBox.Show(Me.textbox1.Text) end if ...Show All
AlexBB Schema Import Problem
I do not get an error when I import a SQL2000 database into a SQL2000 database project, but the objects are missing from the Solution Explorer. I have roughly 100 stored procedures that do not show up under the Stored Procedures node in the Solution Explorer, but the really wierd thing is that they show up under the Schema View. Any ideas how to show up in the Solution Explorer PS. There are not any stored procedure script files on my hard drive except for 3 (3 out of 100) I downloaded CTP5 today and I will see if it is fixed first thing tomorrow. Any update; are you now able to see those stored procedures This is very weird at b ...Show All
Jehan Badshah TableAdapter.Update does not save data
How can I save data entered in a dataset via the UI I tried the code suggested in the "VB Guided Tour", Private Sub Form1_FormClosing( ByVal sender As Object , ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me .FormClosing Me .AddressesBindingSource.EndEdit() Me .AddressesTableAdapter.Update( Me .SQLdbDataSet.Addresses) End Sub but all changes are lost when I restart the application. Thanks. "Found the solution in the free downloadable book 'Build a program now' at the 'Registration Benifit Program' p154 (text in blue)." Where can I download this book I to am having problems with the TableAdapter. My problem is when I try to update it tells me tha ...Show All
mitasid Database Size After Conversion
I have a client who is asking me questions about the Version Control database size after conversion from VSS, in regards to the original VSS database size. For instance, after migrating a 20 GB VSS database, about how big will the Version Control database be I have not been able to find any metrics around this. Has anyone seen any information regarding this Thanks, Doug R Buck has detailed info here: http://blogs.msdn.com/buckh/archive/2006/02/22/tfs_size_estimation.aspx ...Show All
aybe Numeric TextBox
How can I format a TextBox in order to accept only digits and the decimal separator "," or "." When I write TextBox1. I can't find in the pop-up window a field where I can specify this property... Could you please help me Thanks you are looking at checking what keys are being pressed (keydown event on the textbox) and not accepting the non required ones. Plenty examples on these forums: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=669951&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=820050&SiteID=1 you can of course further customize the if statement to accept the characters you like in addition to digits. I w ...Show All
nwave Mapping information could not be obtained from User Name Mapping?????????
Hi, my connection to TFS works randomly. For a while I can connect fine, but for a while I can't. If I check the events I can see the following: Mapping information could not be obtained from User Name Mapping. Any ideas why this is happening Hi xavito, Are you the only user that is experiencing these issues, or are other users of your server experiencing similar problems -Matt I am NOT the only one Check whether the following helps http://support.microsoft.com/kb/925637 Hi xavito, Did the KB article help at all -Matt ...Show All
th3Nu11 Aggregate Coverage Analysis
We have a very large code base. Is there a way to aggregate the coverage analysis from Unit Test and multiple manual tests run on different machines by different users r.t.s, I'm not sure if this is exactly what you are looking for. But we do supporting performing a join on code coverage results from the Visual Studio IDE. Just move all of your coverage files to one machine and open them up in the code coverage results viewer. In that viewer is a join button (with a green plus on it). Click that button and select the reports that you want to join and you will aggregate the results. Thanks, Ian ...Show All
ddogg Where to keep User ID and Password if the user choses to check remember my user name and password
Hi all, In a C# windows Application I have a login screen which will ask the user id and password. It also provides a check box "remember my user id and password". So when ever the user checks that check box, I have to store that information (user id and password) some where so that the user need not to enter again and again. So where should I store this information Which is the efficiant and secured way. Is this information should be stored in cookies or some where in windows registry or should I write a windows service for this or should I store in a file or database Please do me favour by your valuable answer. Thank you, Raviner Reddy.K ...Show All
zoranj [VC++ 2005] Is it possible to compile a Windows Forms Application to Win32 binaries ? :-)
Greetings, :-) I have Windows Forms Application project developed in Visual C++ 2005 Express edition. :-) I want to compile it into Win32 binaries (not MSIL). How to do it :-) Thanks in advance :-) There's no simple way to do it, but you can try this mess and see if it works for you. And nobody's that happy, man. You're creeping me out. ...Show All
