Click here to Skip to main content
15,896,730 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How can I resize an image? the code is included! Pin
Guffa4-Feb-06 7:40
Guffa4-Feb-06 7:40 
GeneralRe: How can I resize an image? the code is included! Pin
JUNEYT4-Feb-06 12:25
JUNEYT4-Feb-06 12:25 
AnswerRe: How can I resize an image? the code is included! Pin
Guffa4-Feb-06 12:47
Guffa4-Feb-06 12:47 
GeneralRe: How can I resize an image? the code is included! Pin
JUNEYT4-Feb-06 23:29
JUNEYT4-Feb-06 23:29 
QuestionReport writers for VB.NET Pin
trimtrom4-Feb-06 4:16
trimtrom4-Feb-06 4:16 
QuestionSql access using web service Pin
intrigued4-Feb-06 1:14
intrigued4-Feb-06 1:14 
QuestionUseing Stored Procedure Pin
alien viper3-Feb-06 23:22
alien viper3-Feb-06 23:22 
AnswerRe: Useing Stored Procedure Pin
Guffa3-Feb-06 23:35
Guffa3-Feb-06 23:35 
No, you can't pass an array to a stored procedure.

You could create a table variable and put the values into that. There is no command to split the string, though, so you would have to do it with string manipulation.

Here's an example of using a table variable, though:
<br />
set nocount on<br />
declare @t table (id varchar(10))<br />
insert into @t values('1')<br />
insert into @t values('2')<br />
insert into @t values('3')<br />
select [LastName] from Employees where EmployeeID in (@t)


Or perhaps the last line has to be:

select [LastName] from Employees where EmployeeID in (select id from @t)

---
b { font-weight: normal; }


-- modified at 5:36 Saturday 4th February, 2006
QuestionHow can I access to scanner vb.net? Pin
JUNEYT3-Feb-06 23:11
JUNEYT3-Feb-06 23:11 
QuestionPInvoke issue Pin
jimjo3-Feb-06 21:27
jimjo3-Feb-06 21:27 
Questioninserting into database Pin
raj kumar reddy3-Feb-06 17:44
raj kumar reddy3-Feb-06 17:44 
AnswerRe: inserting into database Pin
Rana Muhammad Javed Khan3-Feb-06 19:01
Rana Muhammad Javed Khan3-Feb-06 19:01 
AnswerRe: inserting into database Pin
S Douglas3-Feb-06 22:12
professionalS Douglas3-Feb-06 22:12 
QuestionGet Ip Address and put it in TextBox1?? Pin
Darshon3-Feb-06 12:12
Darshon3-Feb-06 12:12 
AnswerRe: Get Ip Address and put it in TextBox1?? Pin
Jason McBurney3-Feb-06 12:43
Jason McBurney3-Feb-06 12:43 
GeneralRe: Get Ip Address and put it in TextBox1?? Pin
Darshon3-Feb-06 19:30
Darshon3-Feb-06 19:30 
GeneralRe: Get Ip Address and put it in TextBox1?? Pin
Jason McBurney7-Feb-06 5:40
Jason McBurney7-Feb-06 5:40 
AnswerRe: Get Ip Address and put it in TextBox1?? Pin
Darshon7-Feb-06 14:07
Darshon7-Feb-06 14:07 
QuestionCopy into Clipboard - .GIF Pin
john john mackey3-Feb-06 12:08
john john mackey3-Feb-06 12:08 
AnswerRe: Copy into Clipboard - .GIF Pin
Jason McBurney3-Feb-06 12:58
Jason McBurney3-Feb-06 12:58 
GeneralRe: Copy into Clipboard - .GIF Pin
john john mackey3-Feb-06 13:22
john john mackey3-Feb-06 13:22 
QuestionA table control for vb6 Pin
ns3-Feb-06 9:40
ns3-Feb-06 9:40 
AnswerRe: A table control for vb6 Pin
Jason McBurney3-Feb-06 13:02
Jason McBurney3-Feb-06 13:02 
QuestionBindingSource Wont Update Pin
AlexeiXX33-Feb-06 9:20
AlexeiXX33-Feb-06 9:20 
QuestionAnother FileSystemObject Question Pin
Quecumber2563-Feb-06 8:41
Quecumber2563-Feb-06 8:41 

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.