VS 2010 Merge These 2 Into One Program?
Feb 16, 2011
First is a windows form application:
vb
Public Class Form1
Dim ds As New DataSet
[Code]....
Now is there a way to merge this into one application? So that the second application doesnt have to have a file as the output, but that the output, (the decoded file) can be stored in local memory or something and be read by first program?
View 3 Replies
ADVERTISEMENT
Sep 30, 2011
I have three dataviews (dataview1, dataview2, and dataview3). These are of type System.Data.DataView, and all three have the same columns. Is there an easy way to merge them into one, so I have one dataview with rows from dataview1, followed by dataview2, and then dataview3?
View 1 Replies
Nov 15, 2011
Is there any way to do nested mail merge in vb.net . i can do only simple mail merge.but not nested mail merge.
My Code gives:
<District1>
<District2>
<District3>
[code]....
View 1 Replies
Mar 22, 2012
I have an sql database with client email addresses.I need to send out reminders at certain dates that vary per client. Is there a way for me to draw only the clients that need to receive the reminders out of the database and then send an email to each one of them?From what I have found so far, it looks like I can set up the smtp fairly easily.I just don't know how to get the client's that I need and then cycle through each one.
View 1 Replies
Feb 24, 2012
I have a conceptually simple task:Read in two TIFF imagesOverlay the second image onto the firstSave as a new TIFFOne catch: The first TIFF is 40,000 pixels by 0,000 pixels, 8-bit indexed color. Yes, I need a lot of memory. I'd like to get to that later. (The second TIFF is also 8-bit.)I've found GDI+ (System.Drawing) to be incredibly restrictive. I cannot create a Graphics object from an 8-bit indexed color bitmap, for one thing (something that woul trying to learn WPF (System.Windows.Media.Imaging). I've been following several examples from MSDN and looking all around but nothing is working. Here's what I have so far:
Dim workingDir As String = "C: emp"
Dim baseimg As String = "base.tif"
Dim overlayimg As String = "overlay.tif"
[code]....
View 1 Replies
May 5, 2011
I am trying to essentially allow the user to merge data from a database onto a document and print it. I am new to working with the PrintDocument, but I believe this would be the way to accomplish this. I know how to print the text onto the PrintDocument at a certain position, but what I am trying to figure out is how to deal with the coordinates of the text I am drawing on the PrintDocument. Ideally, I would love to click on the PrintDocument in a PrintPreviewControl and capture the coordinates of the PrintDocument.
View 9 Replies
May 5, 2012
is it possible by 1 program to save settings to another program without running the program that is being edited?
View 6 Replies
Jun 6, 2012
I wrote this VB program to be able to throw a device we developed into programming mode where we use an ATMEL Flip installer to upload new firmware. I can program one device after another running the application off of Visual Studio Express 2010 or Visual Studio 2010, but when I go to publish this file and run it on another machine, it becomes unstable and crashes after each upload. On those same computers if I run the raw unpackaged program under Visual Studio Express, the system does not crash, and I can program devices repeatedly.
View 5 Replies
Sep 26, 2011
I've been working on a program that generates a batch file, then when you press a button, it executes that batch file. There are multiple batch files attached to each item in the list box.
[code]...
The only thing that it does when I press the button, is starts the batch file, then goes to function searchtitle, which executes the batch file again when it finds out it didn't work properly.The button text doesn't change, none of the items are being added to my first list box, and I can't do anything to the window after pressing the button. It constantly opens the batch file every 5 seconds or so.
View 2 Replies
Apr 14, 2011
The program allows users to insert Documents along with a bunch of their attributes into the program. The documents are stored in a relational database. One of the required functionalities is allowing the user to look for such documents. The User normally search directly for the obvious attributes of the document, like a unique ID, or it's Title. The problem is that from the search parameters is not allways known which ones will the user fill. For example the user inserts the name and version of the deocument, another time the user enters part of the Title and the person that delivered the document, or might just enter the document number and nothing else. Some of the data might even be incomplete, like title, name of the person who created the document and so on. The idea from the person who designed the system (I'm only reimplementing it) was to allow easier searches for the user, and allowing the user to search for more parameters tod with the idea that "the more parameters, the more specific results", since the results are always group of documents instead of single documents.
View 14 Replies
Jan 28, 2009
My program will need to store some settings for when the program gets closed then opened again. I would then like to reload the settings?
- Flat file
- Database
- Registry
- Other
View 1 Replies
Feb 20, 2009
I modified a program in Expressions Blend that is C# I want to use this program as part of a VB program that I am creating. Is it possible to create a VS 2008 application using mixed languages? If not I can build the C# app to an Executable, but then how do I get it to run from within my VB app?
View 8 Replies
Apr 2, 2011
I'm really new at programming and was looking for guidance about a project I have.I have to design a program that administers a multiple choice test to users. It delivers questions one at a time, from a predefined test file for the user to answer. It also marks and displays a score at the end of the test.
First, a QUESTION form verify's the user's registration status and access. The user provides a registration number and password and the program reads it from a "registration.txt" file to determine if the user is eligible to take the test (i.e., they are registered to take it). If it is correct, then the user presses the "Begin" button. If not, then a message appears and the student tries again to enter the information.
A read only text box will display the score at the end of the test (String with format correct/total) and the user can't retake the test.Second, a QUESTION form opens after clicking "Begin" on the entry form. The questions are going to be from a "testfile.txt" file.Each question is on multiple lines in the file. The first line consists of the question followed by possible answers followed by the correct answer ( 3 items are separated by "#"). The current question number and the question will be displayed in textboxes.'n'= possible answers; so each of the next 'n' lines provides a possible answer. All possible answers will be displayed in a Listbox.After the user selects an answer, an ''Enter'' button is pressed. This will submit and evaluate the answer. If nothing is selected a textbox should appear and display the error message (APPEARS ONLY IF THERE IS AN ERROR). After pressing ''Enter'', the next question is displayed.When all questions answered, the entry form is displayed again and displays the score.
I know that's a lot of information, but I wanted it to be really clear. Would it be best to cycle/loop the questions with a DoWhile loop? And how would I store the answers while the user goes through the test?
View 7 Replies
Oct 27, 2011
I have an application, written in C#, which needs some functionality from VB.NET (better said, something valid in CIL but not provided in C#).
So I have an executable and a library file.
Problem:
It has to be published in one file and may not be split to different assemblies!
But:
It's a WPF application, ILMerge will not work.
What could I do?Is it possible to generate (performant) IL on the fly?
View 3 Replies
Apr 12, 2010
I'm trying to create a program that will merge two data tables (one from a database on a network drive, the other is found in a database on the local machine). Each datatable is identical in structure, only (maybe) differs in content. The structure has a primary key, dateCreated, and dateLastEdited fields (plus other fields). I would like to merge down from the network to the local database. If the primary key does not exist on the local db but does on the network, copy from the network db to the local table. If it does exist, check the dateLastEdited column and copy the latest row to the local table.
How would i set up the code to do this? Any assistance would be great.
View 6 Replies
Oct 27, 2011
I'm trying to merge 2 files - a 'simple' string replace. 2 files - an ini-style data file that has <descriptor>=<value> with about 70 rows created by web-form and database, and a csv template file with 2500 rows that has 12 fields, but the values will either be in fields (4) and (5) OR (6) and (7). The data fields won't always be in the same order. I'm reading a line from the Template file, then looping through the data file looking for a descriptor match then replacing it with the value, but because they are in pairs per line, I have to loop twice; then loop to the next template file and so on. Then cleanup to remove the unused descriptors.
I have been unable to crack this for about a week. I wrote a VBScript version yesterday in about an hour and it worked flawlessly first time taking 2 seconds to produce the csv output file exactly as required.
Tried reading the data file and looping through the template, tried almost every combination of Using/End using; For/next, Do Until, Do while, etc. Used Streamreader, File.ReadAllLines, I've read msdn till I know it by heart, but no use. You name it, I've tried it. Must have missed something or it would work though.
You are my final hope. The problem part of the code is below...
BTW -
srXX = StreamReader
swXX = StreamWriter
[code]....
View 6 Replies
Jun 8, 2011
How to merge 2 pdf files into 1 pdf file using vb.net. Couldn't find a method to do it.
View 1 Replies
May 28, 2010
I have a GUI that is running for a form, let's call it Class xWindow. It has finished processing data and is simply waiting for the user to press a button, i.e. the main thread has nothing to do. Just before it finished processing, it kicked started something that has a callback function which occurs in a new thread (e.g. a system timer or a Bonjour callback to say that a service has been found on a port). This callback occurs within the xWindow class.
[Code]....
View 10 Replies
May 19, 2012
I need to marge two datatable with condition. i table data come from local XML Database and another data come from remote sql data if any update made at remote datatable and then marge with local datatable. i wrote a code below :
Public Sub MargeTwoTable()
Dim SQL As String = ""
Dim RemoteTable As New DataTable
Dim LocalTable As DataTable
[code]....
as you see in my code data come from remote database which update date getter then local database . Both table are same and "ID" is primary key. I code is working well. But problem is that when data more then 1000 updated record so this function take too long in loops.
i write a code like : Dim mm() As DataRow = LocalTable.Select("ID = '" & RemoteTable.Rows(i).Item("ID") & "'"). for finding local datatable id row so when data is more then 1000 it take too long because localtable record more than 100000 records. So I need someone help to modify my code what the best way to write the code.
View 3 Replies
May 20, 2012
I need to marge two datatables with condition. I have a datatable where the data comes from a local XML Database and another datatable where the data comes from a remote SQL Server. If any update made in the remote datatable I need to update/merge with the local datatable. Here is what I have so far:
Public Sub MargeTwoTable()
Dim SQL As String = ""
Dim RemoteTable As New DataTable
Dim LocalTable As DataTable
[code]....
In this code data comes from the remote database which updates a date getter then the local database . Both tables have "ID" as the primary key. The code is working well, but the problem is that when more than 1000 records are updated this function takes too long using loops.
View 1 Replies
Jun 15, 2009
I have a DLL that was created in VC++ 2008. Can I add it to my VB.net project? I'd like it so that when I build the program, I don't have to have the DLL in the folder with the .exe.
View 5 Replies
Sep 14, 2010
i'm trying to make my data easy to be read. act, it is difficult to me if the data just fix as in the access database
as example:
FROM this:12 To: 1234 34
*nutsxiera i already alter the example...some correction should be made
View 1 Replies
Jun 27, 2009
Is it possible to merge two For Loops into one? I need this because I am using two for loops (1 to 100,000) to work with the data in a collection. The problem with this code is that it takes more than two hours two finish:
[Code]...
View 1 Replies
Mar 22, 2012
I have a combobox which I want to populate with Locations. The Locations are in the Location table. BUT If the location is in the Item Location AKA the Stock Item has that Location.. but I can't think of a different way of doing this. There must be a simpler way....
[Code]....
View 6 Replies
May 11, 2009
Using word 2003, merging to a new document. I want the macros in the template to be in the new document. I'm using the macros to control printer desitination, each template can go to a different printer.
View 1 Replies
May 13, 2012
I have one datatable tempDT with value :
[Code]...
The problem is I want merge duplicate serial_no into one row which the value of testong adding to new column. I have tried many ways, but I can't find the solution. Here is my code behind :
[Code]...
View 2 Replies
Mar 13, 2009
I have 2 arrays, I don't know their length...I wanna copy both arrays into 1 single array.So the length of output array will be sum of my 2 input arrays.I know I should use Array.Copy but don't know how, for my case, it won't merge the contents of 2 arrays into 1.I also used this but won't work:
Code:
ReDim OutputArray(InputArray1.Length + InputArray2.Length - 1)
Array.Copy(InputArray1, OutputArray, InputArray1.Length)
Array.Copy(InputArray2, OutputArray, InputArray2.Length)
View 2 Replies
Apr 21, 2010
My code got an error at messagebox.show at messagebox said System.NullReferenceException was unhandled Message="Object reference not set to an instance of an object"What is wrong? (dt1 and dt2 are all ok. They are have only one columnd: ID)
[Code]...
View 12 Replies
Nov 24, 2009
I need to add in mail merge functionality to my application. I don't have MS Office, but I do have MS Works (which does have mail merge functionality, in the word processor application). Can the MS Works Mail merge functionality be accessed from VB.NET code.
View 1 Replies
Jun 1, 2012
Just got this code for merging cells in a DGV
Private Sub DataGridView1_CellPainting(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellPaintingEventArgs) Handles DataGridView1.CellPainting
'Here 0 is the ColumnIndex to for merging cells and 14 is the RowIndex till 'where merging
[code].....
View 1 Replies