Insert Text Into Another Application?
Aug 2, 2009I just wondered if it's possible to run a exe and at a trigged event place text and send it in another exe?
View 1 RepliesI just wondered if it's possible to run a exe and at a trigged event place text and send it in another exe?
View 1 Replieshow do insert text into notepad from my VB application?
View 7 RepliesI have an SQL database, and 50 text files, and Visual Basic 2010 Premimum,I need to find a specific line of text in the text files and then take the next 37 lines of text and save them in my database. I need advice as to point me in the right direction
View 2 RepliesI have a question, how would i have a button, then when you click it, it puts the text at the text cursor in the RTF?
View 5 Repliesi'm trying to insert the text inside a set of text boxes, into a table, the table has these columns
TicketID ("Autonumber")| StaffName | PCNumber | ZoneNumber | Description | TechnicianAssigned | JobComplete ("Yes/No")
Whats wrong with my SQL statement?
conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=F:\Uni (Year 3)\EJ315020S - Windows Application Devlopment\Assignment Database\Details.mdb"
strSQL = "INSERT INTO SupportTickets VALUES " & txtStaffName & "," & txtPCN & "," & txtZoneNumber & "," & rtbDescription & "," &
[code]....
I am tring to insert a row or shift all the row down one; depending how you want ot look at it. In oter words I have data in rows one through 10 and I want to move it down so that I can put a headings in row one.In Excel VBA I would do something like:Rows("1:1").SelectSelection.Insert Shift:=xlDownBut you can not use exactly this code in VB.Net and I cannot figure out how to do it here.Here is code that I used, succsessfuly to widing a cell:Code: rng = xlsSheet.Application.Range("D:D") rng.ColumnWidth = 17.0
View 3 Replieshow to write the AT command in the serial port. I have connect a modem to the comport. I have this code that I get from my teacher. But it does not show any AT command in the code
Private WithEvents serialPort As New IO.Ports.SerialPort
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'---display all the serial port names on the local computer---
[code]....
What i am trying to do is to have a fixed initial row heigh of 60. Then the user is to put Data into the empty fields. When it user clicks the add button it will loop until it reaches an empty record and then it will insert the data into a SQL Database. Its simular to my code below but with a DataGrid. Also, this DataGrid is located on a ControlTab. The code below is just to show the logic of what i am trying to do.
Private Sub btnInkjetGenerateTicket_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnInkjetGenerateTicket.Click
'Description: This INSERTS and Generates ticket from the InkjetTab fields
[code].....
I have to make an hangman game for school...and i want to show an image when a player loses or wins.
View 1 RepliesI am using Visual Basic.net 2005, Setup Wizard project to create installer program. Program installs and uninstall properly but I am not able to see it in Start � All Programs menu.
View 1 RepliesI am using vb.net code and sql server 2005. I have textbox in my application which is linked to a sql column. Now I want to check that it should not insert any duplicate record in table. I mean everytime it insert in table the value should be unique. data is inserted in table on button click.
I am using objectdatasource for sql connectivity and FormView for dataentry.
Is it possible to insert vector images (ecw or ai) in an VB.NET application? If so...is it possible to zoom in on them and keep the same precision? I'm trying to create a very basic GIS system and I need to zoom in on some places.
View 11 RepliesFor where it says integer, I just wanted to know what the 'integer' exactly is. If I want to insert text at the end of the user's text, what should I put?
View 8 Replieshow to take text read from a listbox and insert it into a richtextbox.
I thought this would work:
Dim insertText As String = ListBox1.SelectedItem.ToString
myPos = RichTextBox1.SelectionStart
RichTextBox1.Text.Insert(myPos, insertText)
i need vb.net code for insert text into text box by voice ,for examele when i speek "computer" it write in to textbox computer
View 1 Repliestell me how to insert log message into application eventlog from VB6 program? Do I need any permission to add log messages in event log?
View 6 RepliesJust trying to insert data from my application to web DB, but client starts lagging when inserting stared..I need each second insert data.
[code]...
code inserting data to web, but when it's lagging inpossible to do something..how to fix lagging?
i am using vb.net(2008) and MS access as my database.[CODE]...
now i want to insert into these tables. how can i do that? i know how to insert into a single table for example listed below, so how can i modify that so that i can insert into multiple tables[CODE]...
the thing is i'm a .net programmer at varsity but i cant figure out how to program or insert shortcut/icon keys on the web browser application e.g back,refresh,stop,go. i'm only able to do this using command buttoms. so i want to use simple icons like those on some web browsers.
View 1 RepliesI am using VS2008(VB.NET) and SQL Server2000. I want to make an application which reads files and Insert Data into SQL. If first file has some error. Write into log and Move Next file for Proceed. How can I do that.
View 3 Replieswith vb and iam just trying to learn this one by reading tutorials online. After months o trying, i have created one db which i would like to use at our office. Its a counter Ticketing system. Its fun actually i must say, but its also giving me the headache with the trial and error am doing. Attached is the print screen of my project.I was able to make it work. Yes, it prints the number it needs to print. The problem is, i just dont know how to insert or where to insert the following text.Counter 17 (or whichever counter they have to go)Your number is
View 12 RepliesHow do I get back to where I can insert text? I can only typeover, even in a new VB project.
View 2 RepliesI want to be able to create a VB application that is on a flash drive and will run as soon as I insert the flash drive into a computer.
View 7 RepliesI have a spreadsheet saved as an .xml file. I see that as worksheets are added, the new xml text is simply inserted just before the final line of the file, which is "</workbook>". I have no problem creating the xml text for each added worksheet, but I don't know what I'm sure is a really simple way to insert the new text where it needs to go - or append the new text (including </workbook> at the end) at the correct location.
View 9 RepliesI have a text box that I need to be filled from another form (a search window). I would like to call a function and pass the text box to that function. What is the best way to do this? I think I can just pass the text box as an object. Or I could use an API. I may even be able to pass some kind of handle to the text box. Let me know what would be easiest (I would prefer to avoid API).
View 7 RepliesIm trying to put text into a RTB using buttons. These then auto fill in notes etc in the RTB to say a user did X at X time and date. This was working fine when i did it for a plain text RTB. But when using RTB i have had to change my origional code from:
Private Sub Button20_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button20.Click
NotesBox.Rtf = Me.NotesBox.Text & vbNewLine & Date.Now.Day & "." & Date.Now.Month & "." &
[code].....
How can I insert a text in RichTextBox at current cursor position. The AppendText method adds to the end of the existing text. Any similar method that inserts text at the current cursor position?
Similarly, can it be done for our simple TextBox?
I am trying to make a program that inserts text into another application. I want the user to be allowed to choose which application they want to put the text into Word, Notepad, WordPad, Firefox, IE, Anything. How do I do this? The user is obviously going to have to input something about the application but what do I need?
View 2 RepliesI am trying to make a program that the user fills out a field then it inserts it between this
<marquee>IN HERE</marquee>
I am usin Visual Basic Ultimate 2010 I need a text box that they fill out then they click another button then it inserts the text that that person filled in the texbox between the >INHERE<
sql="SELECT PartNo, Model, Manufacturer, Description, NumberinStock FROM Stock WHERE Description LIKE '%" + "my String Here" + "%' ORDER BY Manufacturer ASC"
View 8 Replies