Click here to Skip to main content
15,888,142 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Add Multiple Records to one TextBox from SQL Pin
Richard MacCutchan3-Apr-14 1:12
mveRichard MacCutchan3-Apr-14 1:12 
GeneralRe: Add Multiple Records to one TextBox from SQL Pin
Dave Kreskowiak3-Apr-14 2:24
mveDave Kreskowiak3-Apr-14 2:24 
GeneralRe: Add Multiple Records to one TextBox from SQL Pin
Dan O'Riordan3-Apr-14 2:43
Dan O'Riordan3-Apr-14 2:43 
GeneralRe: Add Multiple Records to one TextBox from SQL Pin
Dave Kreskowiak3-Apr-14 3:43
mveDave Kreskowiak3-Apr-14 3:43 
GeneralRe: Add Multiple Records to one TextBox from SQL Pin
Richard MacCutchan3-Apr-14 4:00
mveRichard MacCutchan3-Apr-14 4:00 
GeneralRe: Add Multiple Records to one TextBox from SQL Pin
Dan O'Riordan3-Apr-14 2:52
Dan O'Riordan3-Apr-14 2:52 
GeneralRe: Add Multiple Records to one TextBox from SQL Pin
Richard MacCutchan3-Apr-14 3:11
mveRichard MacCutchan3-Apr-14 3:11 
AnswerRe: Add Multiple Records to one TextBox from SQL Pin
Tino Fourie24-Apr-14 4:13
Tino Fourie24-Apr-14 4:13 
Late but might still help. I am going to assume a few things and then also use code as an example to simplify the possible solution.

Assumptions:
In your DB you probably have a table for Members and another table for EmailMsg (to be distributed to Members)

'Lets assume all Members
Your SQL query will be
SQL
"SELECT * FROM DB.Members"


'Lets assume Email based on Subject
Your SQL query will be
SQL
"Select * FROM DB.MailMsg WHERE Subject = 'How do I'"


Run the first query against the database to get all the Members and populate your dataset (DBData)
Now populate the "MailTo" textbox:
VB
For i = 0 to DBData.rows - 1
MailTo.AppendText(DBData.rows(i).Item(0) & ";")


Instead of the AppendText option, you can use the "ScrollToCaret" option, but I much prefer the AppendToText option.

To populate the the "Subject" textbox and "EmailMessage" textbox is done exactly the same except you do not need to iterate through the dataset because there should only be one EmailMsg in there. You might want to use the Multiline option in your textbox containing the mail message you wish to distribute.

Good luck and try to stay away from automated Wizards, they really don't teach you anything good.
Regards,
Tino
"Plan your work, Work your plan"

QuestionMinimize 3 forms pressing the minimize button on main form Pin
dilkonika2-Apr-14 1:42
dilkonika2-Apr-14 1:42 
AnswerRe: Minimize 3 forms pressing the minimize button on main form Pin
Richard MacCutchan2-Apr-14 2:31
mveRichard MacCutchan2-Apr-14 2:31 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
dilkonika2-Apr-14 3:37
dilkonika2-Apr-14 3:37 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
Dave Kreskowiak2-Apr-14 3:54
mveDave Kreskowiak2-Apr-14 3:54 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
dilkonika2-Apr-14 3:58
dilkonika2-Apr-14 3:58 
AnswerRe: Minimize 3 forms pressing the minimize button on main form Pin
Dave Kreskowiak2-Apr-14 4:12
mveDave Kreskowiak2-Apr-14 4:12 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
dilkonika2-Apr-14 6:07
dilkonika2-Apr-14 6:07 
SuggestionRe: Minimize 3 forms pressing the minimize button on main form Pin
Eddy Vluggen2-Apr-14 7:06
professionalEddy Vluggen2-Apr-14 7:06 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
dilkonika2-Apr-14 11:54
dilkonika2-Apr-14 11:54 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
Eddy Vluggen3-Apr-14 3:02
professionalEddy Vluggen3-Apr-14 3:02 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
Dave Kreskowiak2-Apr-14 7:42
mveDave Kreskowiak2-Apr-14 7:42 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
dilkonika2-Apr-14 12:00
dilkonika2-Apr-14 12:00 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
Dave Kreskowiak2-Apr-14 13:04
mveDave Kreskowiak2-Apr-14 13:04 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
dilkonika2-Apr-14 13:30
dilkonika2-Apr-14 13:30 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
Dave Kreskowiak2-Apr-14 14:05
mveDave Kreskowiak2-Apr-14 14:05 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
dilkonika2-Apr-14 14:24
dilkonika2-Apr-14 14:24 
GeneralRe: Minimize 3 forms pressing the minimize button on main form Pin
Dave Kreskowiak2-Apr-14 17:27
mveDave Kreskowiak2-Apr-14 17:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.