Click here to Skip to main content
15,916,293 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionVS 2003 to VS 2008 - Can not load type library Pin
No-e30-Jul-09 7:32
No-e30-Jul-09 7:32 
AnswerRe: VS 2003 to VS 2008 - Can not load type library Pin
Dave Kreskowiak30-Jul-09 7:53
mveDave Kreskowiak30-Jul-09 7:53 
GeneralRe: VS 2003 to VS 2008 - Can not load type library Pin
No-e30-Jul-09 8:15
No-e30-Jul-09 8:15 
GeneralRe: VS 2003 to VS 2008 - Can not load type library Pin
Dave Kreskowiak30-Jul-09 9:17
mveDave Kreskowiak30-Jul-09 9:17 
QuestionBinding 2 ComboBoxes within the same form to a single data source Pin
Jay Royall30-Jul-09 5:28
Jay Royall30-Jul-09 5:28 
AnswerRe: Binding 2 ComboBoxes within the same form to a single data source [modified] Pin
Dave Kreskowiak30-Jul-09 6:10
mveDave Kreskowiak30-Jul-09 6:10 
GeneralRe: Binding 2 ComboBoxes within the same form to a single data source [modified] Pin
Jay Royall30-Jul-09 22:04
Jay Royall30-Jul-09 22:04 
GeneralRe: Binding 2 ComboBoxes within the same form to a single data source Pin
Dave Kreskowiak31-Jul-09 4:28
mveDave Kreskowiak31-Jul-09 4:28 
GeneralRe: Binding 2 ComboBoxes within the same form to a single data source Pin
Jay Royall31-Jul-09 4:52
Jay Royall31-Jul-09 4:52 
QuestionHelp with windows progress bar Pin
xx77abs30-Jul-09 3:55
xx77abs30-Jul-09 3:55 
AnswerRe: Help with windows progress bar Pin
Henry Minute30-Jul-09 5:13
Henry Minute30-Jul-09 5:13 
GeneralRe: Help with windows progress bar Pin
xx77abs30-Jul-09 5:20
xx77abs30-Jul-09 5:20 
GeneralRe: Help with windows progress bar Pin
Henry Minute30-Jul-09 5:32
Henry Minute30-Jul-09 5:32 
AnswerRe: Help with windows progress bar Pin
Moreno Airoldi30-Jul-09 5:29
Moreno Airoldi30-Jul-09 5:29 
GeneralRe: Help with windows progress bar Pin
xx77abs30-Jul-09 5:33
xx77abs30-Jul-09 5:33 
GeneralRe: Help with windows progress bar Pin
Moreno Airoldi30-Jul-09 5:43
Moreno Airoldi30-Jul-09 5:43 
GeneralRe: Help with windows progress bar Pin
DaveyM6930-Jul-09 6:20
professionalDaveyM6930-Jul-09 6:20 
QuestionNeed quick resolution solution - going from 1280x768 to 800x600 Pin
Hypermommy30-Jul-09 3:02
Hypermommy30-Jul-09 3:02 
AnswerRe: Need quick resolution solution - going from 1280x768 to 800x600 Pin
Moreno Airoldi30-Jul-09 3:15
Moreno Airoldi30-Jul-09 3:15 
AnswerRe: Need quick resolution solution - going from 1280x768 to 800x600 Pin
Johan Hakkesteegt30-Jul-09 3:22
Johan Hakkesteegt30-Jul-09 3:22 
AnswerRe: Need quick resolution solution - going from 1280x768 to 800x600 Pin
Dave Kreskowiak30-Jul-09 6:06
mveDave Kreskowiak30-Jul-09 6:06 
GeneralRe: Need quick resolution solution - going from 1280x768 to 800x600 Pin
Hypermommy30-Jul-09 6:19
Hypermommy30-Jul-09 6:19 
GeneralRe: Need quick resolution solution - going from 1280x768 to 800x600 Pin
Dave Kreskowiak30-Jul-09 6:23
mveDave Kreskowiak30-Jul-09 6:23 
QuestionSelect Query from different Databases ? Pin
Paramu197330-Jul-09 2:28
Paramu197330-Jul-09 2:28 
AnswerRe: Select Query from different Databases ? Pin
Johan Hakkesteegt30-Jul-09 2:44
Johan Hakkesteegt30-Jul-09 2:44 
So we're talking SQL here not VB, but okay.
SELECT T0.*
FROM Employee_Master.dbo.emp_master T0
INNER JOIN Purchase_Master.dbo.mpr_master T1 ON T0.emp_id = T1.emp_ID


or

SELECT T0.*
FROM Employee_Master.dbo.emp_master T0
WHERE T0.emp_id IN (SELECT T1.emp_id FROM Purchase_Master.dbo.mpr_master)


etc.

My advice is free, and you may get what you paid for.

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.