How To Edit REG_SZ
Jun 17, 2010Need to change my Internet Explorer internet settings to use a proxy server as my connection.How can I code that in my app using a button?
View 1 RepliesNeed to change my Internet Explorer internet settings to use a proxy server as my connection.How can I code that in my app using a button?
View 1 RepliesI have a form that adds new contacts. New contacts are added by pressing an appropriate button and they appear as an entry in the list on the form. I try now to add an edit button that will edit existing entries.User will select a given entry on the list and press edit button and will be presented with an appropriate form (AddContFrm).Right now it simply adds another entry with the same title. Logic is handled in a class called Contact.vb Here is my code.
Public Class Contact
Public Contact As String
Public Title As String[code]....
I am not able to edit the second row. No problem with the first line.Error: Column 'PID' is constrained to be unique. Value '2' is already present.[code]
View 4 Repliesi can't edit my vb files. after having opened visual studio 2008, i open a project with the solution file. i can see, in the solution explorer window, my vb file. but if i double-click the vb file, i have the following error; there is no editor available for form1.vb. make sure the application for the file type (.vb) is installed. i have re-installed visual studio and still got the error. someone knows how to fix this?
View 3 Repliesi want to EDIT an existing .txt file, but i dont want remove the lines above the new lines, i wish do it, on visual basic. how can i do it?
View 11 RepliesWhat I am trying to do is be able to remove a handler, add a handler, and a button and add a string to the my.settings. I would like the DLL to be able to do all of this to my form1 in a different project. How my program is setup right now is by the information inside this tutorial. You will be able to find my source code below but it is just a test code that I am using for right now to add to my main project later on. What the program does so far is checks for add-dons (DLL's) and will execute the function Addonloaded inside the DLL. My final goal is to have it so that nothing will be stored inside the program for the add-on's, so that I can easily make add-on's and the users can just add the DLL to their addons folder.[code]...
View 2 Repliestrying to edit an xml file in vb, i try-ed to find answer around but those did not worked as expected, what i'm trying to achieve is that for those transport_orders that have negative , replace the negative value with its positive.Keep in mind that the values is a number with 2 decimals and it's positive shouls remain in the same format.
Source xml looks like this:
<transport_orders>
<transport_order>
<id>NOCCO/12-006798_1</id>
[Code].....
I have a xml document that i want to edit, for example true texboxes, any other way would also be welcome :))
[Code]...
how to edit gpedit.msc in visual basic
View 8 RepliesI need to edit image in asp.net. just functionality like ms paint color brushes. how can i get this using system.drawing namespace on web form.
View 1 RepliesWell here's a strange one.I have a DataGridView linked to a List (of Object) dataset..
Code:
Private Villages As List(Of VillageDisplay)
Private Sub LoadVillagedata(ByVal VendorID As Integer)
Villages = DataMethods.GetObj(VendorID)
DGVVill.DataSource = Villages
[Code]...
i have a radgridview to display come records.when i'v stored some information in database ,i've made a mistake.how can i edit that mistake without opening database?
View 3 RepliesI have a problem to edit some xml file.this my xml file[code]...
all i want to do is only add some tag and information like that.
i found some code that only allow me to edit the first row of the listview only. it does not allow to edit other row and column. can some1 teach me, how to change the code to make it more edit able where ever i want to edit.
Private Sub ListView1_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListView1.DoubleClick
If Windows.Forms.MouseButtons.Left Then
[Code].....
Every time I open a project, it closes the project I had open. I would like to have two or more projects open at a time. I like to do this so that I can reference old code, etc. The projects are not related in any way, so I don't want them linked in any way.
View 10 RepliesI am new to visual basic came from java, and I seem to be getting the hang of it by checking out some pre made programs, so I decide to create my own program. So what I need help with is a piece of my program where it takes whatever the user inputted in Textbox1 (for example) and adds it on a new line in a .txt file I have on my ftp server. For example I have a file raffleNums.txt on my FTP server, and raffleNums.txt contains this[code]...
View 1 RepliesIs there a way you can edit what is in a tab using buttons?
View 3 Repliesi have a file located in "c://nakahiru/config.cfg"inside the file at line number 13 there is a line call (bind "0" "slot10")i just want to replace that line with textboxt1.txt
View 6 RepliesI have a CPP file. I am using VB in VS2005. I have opened that file using the FileSystemObject. I am reading each and every line in that CPP file. I have to comment all the lines until I encounter a return statement. I am using the scripting.textstream to read a line from the CPP file. But I have no idea as to how we can add a // comment to the beginning of every line that I read or even a multiline comment from the beginning till a return statement.
View 1 RepliesHow to edit the contents of that form?
View 4 RepliesI need to edit registry in vb.net (2010) i know how to edit it in a .reg file but not in visual basic 2010 if it helps this is the code [code] on the system may be monitored. Any unauthorized use of the system may result in disciplinary action, civil or criminal penalties." [code]
View 2 RepliesHow would i go about editing memorey in Visual basic..(like say i have a memorey for a program {EX. x032342 is the memory} and how would i call the program and put this memorey in
View 2 RepliesI want to edit the Filed name from session to session1 because session is keyword using vb.net
View 4 RepliesI am using the Ink object and storing the data in database as Image Data type.I want to edit the image after reading and again store back to data base. Is it posible to edit the Ink once it is saved.
View 2 RepliesI have the following code (which creates the XML file, and reads the XML):
[code...]
how to edit the xml file? I have come up with that so far but don't know how to edit a item.
I have this RichTextbox in my vb.net form and I would like to when a user click a button, for example to embold the selected text, how would I do this.Also, I do NOT want to use the standard vb.net expressions such as RichTextBox1.SelectedText.Font.Bold = true. I want to do something like RichTextbox1.SelectedRTF="[bold]" & RichTextBox1.SelectedRTF & "[/bold]" or whatever RTF looks like.Can I just add the RTF options random places or can a RichTextBox return an error if the text is in wrong format. I'm mostly looking for info on how to work with RTF without using the standard vb expressions.
View 1 RepliesIs it possible for vb to extract files from tar(and put them back)? I found this but it says that Dim tar As New ChilkatTar <<<< ChilkatTar does not exist I am trying to edit one xml file(which is not compressed) but if i do that with notepad, the tar becomes corrupt
View 1 RepliesI'm attempting to update some values in the web.config file from code during an install process.So far I've found this for updating the connection string,[code]However I need to update another section and I'm not sure how. I have the settings for an email and I'm not sure how to update them. Relevant web.config section below, [code]
View 2 RepliesI am coding in Visual Basic. I am using a checkbox control. Now depending on its checked property I need to set/unset a bit column in a SQL Server database. Here's the code:
Try
conSQL.Open()
Dim cmd As New SqlCommand("update Student set send_mail = " + _
[Code].....
The send_mail attribute is of bit datatype. This code is not working.
I am a beginner VB.NET programmer, and I was hoping that there is a post that has a application that adds, edits, and deletes records from a Access database. Nothing fancy, just a simple interface to get me started.
View 1 Replies