User Profile

Collapse

Profile Sidebar

Collapse
Kirsten
Kirsten
Last Activity: Aug 1 '08, 06:58 AM
Joined: Feb 11 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Kirsten
    started a topic Binding Dataset to TextBox?
    in .NET

    Binding Dataset to TextBox?

    I am having trouble binding a DataSet to TextBoxes on a form.
    The last line gives me this error:
    "Child list for field tbl cannot be created"

    my code is this:
    Code:
    Dim sql As String = "Select * From tbl Where ID=2"
    Dim ConString = ClassicCooking.My.Settings.Connstring
    Dim Conn As New SqlConnection(ConString)
    Dim myDataSet = New DataSet
    
    Dim MyBinding As
    ...
    See more | Go to post
    Last edited by Curtis Rutland; Jul 28 '08, 04:09 AM. Reason: Added code tags -- Please use the # button

  • Kirsten
    replied to Trusted with Distributed project?
    Runtime.
    If I didn't mention it in the text I was certainly thinking it. So thanks for reading my mind (usually in a font too small to be noticed).
    See more | Go to post

    Leave a comment:


  • Kirsten
    started a topic Trusted with Distributed project?

    Trusted with Distributed project?

    I have an Access app that I want to distribute to some user. What can I do so that they don't run into Not a Trusted Site error?
    See more | Go to post

  • Kirsten
    replied to Access 2007 & Removing Ribbons?
    >>First off, ribbon xml is extremely case sensitive!
    this nailed it!
    In fact I had copied mind from the MSDN article, but theirs is wrong (cause of the case sensitive.. thanks...
    See more | Go to post

    Leave a comment:


  • Kirsten
    started a topic Access 2007 & Removing Ribbons?

    Access 2007 & Removing Ribbons?

    It has two fields - RibbonName and RibbonXML. And they contain "HideTheRib bon" and "<CustomUI xmlns="http://schemas.microso ft.com/office/2006/01/CustomUI"> <Ribbon startFromScratc h="true"/></CustomUI>"

    I attached this to the "ribbon and toolbar options" in Access Options.

    But when I use this Database I still get the Home Ribbon.

    What...
    See more | Go to post

  • Kirsten
    started a topic ADO and Access 2007

    ADO and Access 2007

    I brought over some code from an Access 2K project.
    Dim cnn As ADODB.Connectio n
    Dim rst As ADODB.Recordset
    And I get an error "user-defined type not defined"
    So in References I added:
    MS ActiveX Data Objects Recordset 6.0 Library
    and
    MS ADO Ext. 6.0 for DDL and Security

    But that didn't fix anything.

    What do I need to install for this work?
    See more | Go to post

  • Kirsten
    replied to VB.NET 2008 - DateTimePicker Colors ?
    in .NET
    Service Pack for VS 2008?

    Maybe I can find a third party DateTimePicker that I can use instead.
    Do you know of any?...
    See more | Go to post

    Leave a comment:


  • Kirsten
    replied to VB.NET 2008 - DateTimePicker Colors ?
    in .NET
    That really sucks.
    BTW, I'm using 3.5...
    See more | Go to post

    Leave a comment:


  • Kirsten
    replied to VB.NET 2008 - DateTimePicker Colors ?
    in .NET
    VB.NET is what I'm using, not ASP.NET. I don't believe there is any CSS support in VB and Windows Forms.......
    See more | Go to post

    Leave a comment:


  • Kirsten
    started a topic VB.NET 2008 - TableAdapterManager ?
    in .NET

    VB.NET 2008 - TableAdapterManager ?

    I have this situation with ADO that is giving me a problem.
    I have two related tables -
    Products
    ProductVendors (id, VendorID, ProductID)

    There is a One.Product to many Vendors relation and ProductVendors. VendorID + ProductVendors. ProductID must be unique.

    They are on one Form that consists of one Product and a DataGridView that allows for the inputing of multiple vendors.

    Here...
    See more | Go to post

  • Kirsten
    started a topic VB.NET 2008 - DateTimePicker Colors ?
    in .NET

    VB.NET 2008 - DateTimePicker Colors ?

    I am trying to set the colors for the DateTimePicker. I managed to change all the calendar colors - that is, of the calendar after the DateTimePicker is click and the Calendar is opened, but nothing I do changes the colors of the control before it is click on, when it looks like a textbox. How can I change those colors?

    the color properties that I have changes so far are:
    .CalendarForeCo lor
    .CalendarTitleF oreColor...
    See more | Go to post

  • Kirsten
    replied to dBase file in VB.Net ?
    in .NET
    I tried:
    [code=vbnet]
    Dim ConString = "Driver={Micros oft Visual FoxPro Driver};UID=;PW D=;SourceType=D BF;" & "SourceDB=h:\ac t\order;Exclusi ve=NO;Backgroun dFetch=No;Colla te=Machine;"

    Dim odbcConn As New Odbc.OdbcConnec tion(ConString)

    odbcConn.Open()
    Dim odbcComm As New Odbc.OdbcComman d
    odbcComm.Connec tion = odbcConn...
    See more | Go to post
    Last edited by Frinavale; Feb 12 '08, 09:49 PM. Reason: Added [code] tags

    Leave a comment:


  • Kirsten
    started a topic dBase file in VB.Net ?
    in .NET

    dBase file in VB.Net ?

    Is there a way to read a simple dBase file using vb.net (2008)?
    See more | Go to post

  • Kirsten
    replied to ComboBox problem?
    in .NET
    Thanks for your help.
    I resolved the problem which was the DataBinding.Tex t had a value and when I removed it now it's working....
    See more | Go to post

    Leave a comment:


  • Kirsten
    replied to ComboBox problem?
    in .NET
    Yes it is suppose to be updating the DataSource.
    But why would that matter or make a problem?...
    See more | Go to post

    Leave a comment:


  • Kirsten
    replied to ComboBox problem?
    in .NET
    I am not using any events with it, nor am I getting any error....
    See more | Go to post

    Leave a comment:


  • Kirsten
    started a topic ComboBox problem?
    in .NET

    ComboBox problem?

    I’m using VS 2008
    I have a bound ComboBox on a form.
    It is bound to a tblInvoiceHeade r. VendorID, and it shows the VendorName. When clicked it displays a list of Vendors. When one is selected it is suppose to put the VendorID into this field.

    When the form opens it displays the correct vendor (the one whose VendorID = the VendorID in this textbox), but when I change the selection it remains stuck in this ComboBox,...
    See more | Go to post

  • >>Try double clicking the toolstrip item

    Got it!!!!

    thanks so mcuh...
    See more | Go to post

    Leave a comment:


  • WinApp Menu ToolStrip: Determine toolstrip item clicked

    I put a Menu Strip that has several ToolStripMenuIt ems on my form. Each Toostrip has some items.

    But I can't figure out how to determine which of them was clicked ?
    See more | Go to post
No activity results to display
Show More
Working...