Question : SQL server 2008 second named instances installation failed

I have SQL server 2008 installed on a windows 2k8 32bit box. I need to install a second named instances in SQL. After the end of the installation i got a failed for the client tool SDK and the log suggested that i unistall sql server. I cant do this becuase of my first default sql database. Is this an error that will prevent the second and the first Database from working. I have attached the log file.
Attachments:
 
 

Answer : SQL server 2008 second named instances installation failed

along the line that MelindaJohnson post,,

the subform does not have a rowsource property, it use a record source.
in the afterupdate event of the listbox, create a sring of selected items

private sub list0_afterUpdate()
dim j, sLst
with me.list0
      if .itemsselected.count >0 then
        for each j in .itemsselected
            sLst=sLst & "," & chr(39) & .itemdata(j) & chr(39)
        next
     end if
     sLst=mid(slst,2)
end with

me.subformname.form.recordsource="select * from tableName where [fieldname] in (" & slst & ")"


that will vary depending on the data type of the bound column of the listbox

can you post the rowsource of the listbox

also note that you have to remove the link master/child fields setting of the subform






Random Solutions  
 
programming4us programming4us