Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by yu217171

  1. yu217171

    SQL Server equivalent of OLE Object

    Hi cmmrfrds, I got it to work. My program was returning a type mismatch but I later found out that it was a foreign key constraint violation. Thanks again, Keith
  2. yu217171

    DAO Connection to SQL Server

    Thanks hmckillop. I created an ODBC System DSN and it worked. The reason why I'm using DAO is because we have a legacy app designed in VB and rehauling to use ADO or .NET is just not worth it. Thanks again everyone. Keith
  3. yu217171

    SQL Server equivalent of OLE Object

    Hi everyone, What's the SQL Server equivalent of the OLE Object datatype in Microsoft Access? I tried Binary, VarBinary and Image. All three of those datatypes give me a type mismatch when I try to insert an image into SQL Server. The insert works when I insert into a MS Access DB with the...
  4. yu217171

    DAO Connection to SQL Server

    Hi everyone, Does anyone know how to connect to SQL Server using DAO? Here's some code I dug up but it doesn't work. Dim connString As String connString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=MyDatabase;Data Source=MyServerName" Dim...
  5. yu217171

    Dynamic Controls

    Hi everyone, I was wondering if I could get your opinion on something. I was asked to design a quiz for HR. Something in the form below: Category I (1) I am cool. Agree O Disagree O Don't Know O (2) You are cool. Agree O Disagree O Don't Know O Category II (1) I am cool...
  6. yu217171

    GoTo Not Supported...What Do I Use??

    Hey hodgesp, Its just that GOTO is seen as bad programming practice. If you had GOTOs all over the place (like in the days of BASIC code), it would be a real headache to debug. Keith
  7. yu217171

    Access Database Update Problem

    Hi Bernie, If you are performing database interactions using Access, you should do so with the System.Data.OleDb namespace and its objects. Keith
  8. yu217171

    Centering Text Menus

    Hi everyone, I have a text menubar that goes horizontally across the top of my page with the margin-left at 0, margin-top at 0 and margin-right at 0. The text in the menubar is an unordered list. The problem I'm having is centering the menu items (text links). Here's my CSS. This is my...
  9. yu217171

    bin\*.pdb

    Ok, thnx for the insight guys. Keith
  10. yu217171

    bin\*.pdb

    Hi everyone, Every application that I've compiled has a PDB (Intermediate file, according to Windows Explorer) in addition to at least one DLL file in my BIN folder. What exactly is this PDB file? Is it ok to delete it? Hope someone can shed some light on it. Thanks, Keith
  11. yu217171

    Server Application Unavailable - but its there!?!?

    CJAI, I've gotten this error before. It was due to Microsoft update/patch that was installed on the server. Can you tell me what Event Viewer says about the error? Keith
  12. yu217171

    CONVERT Help

    How about converting your string into a double? double myRate = double.Parse (txtRate.Text); cmd.parameters.add(New OleDbParameter("@rate", myRate)); HTH, Keith
  13. yu217171

    Weird Error - Cannot Get into Design View

    AtomicChip, That's what I did to get around it. I wrote a function and bound it to the column. Thanks again, Keith
  14. yu217171

    Weird Error - Cannot Get into Design View

    Hi everyone, I cannot get into Design View after I insert this piece of code. <asp:templatecolumn visible=False headertext="Edit Comments"> <edititemtemplate> <a href="javascript:void window.open('comments.aspx?reqID=<%#DataBinder.Eval (Container.DataItem, "RequestID")%>','test','width=500...
  15. yu217171

    Binding the Initial Value of a DropDownList in Editable Datagrid

    Hi Jen, You don't access your controls through the ItemDataBound event? I thought that was the only way of accessing the controls. (when they are created and bound to the datagrid) Keith

Part and Inventory Search

Back
Top