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!

Search results for query: *

  • Users: sergiog
  • Content: Threads
  • Order by date
  1. sergiog

    After I try to delete a record, absoluteposition gives error

    Hi I am trying to delete a record with rst.delete but Access is not allowing me because of referential integrity. I trap this and I exit the sub. So far so good. bu when I try to do rst.absoluteposition = 5 to move the recordset pointer I get an error saying Row handle referred to a deleted...
  2. sergiog

    What property of a combobox to bind to a bindingcollection

    Hi What property of a combobox should i use when adding the combobox to a bindingcollection ? i am filling in the combobox with values from a table. The text is getting the "Desc" field and the Itemdata is getting the "ID" field. any ideas pls ? thanks
  3. sergiog

    Binding a Checkbox to a recordset

    Hi i have a recordset returning a recordset, in which i have 4 boolean fields. i also have a bindingcollection in which i am adding 4 checkboxes like so colbind.add chkView,"Value","View" no, this line gives me error "invalid property value" All i want is the...
  4. sergiog

    Simple Cobobox Add Item giving error. Please help !

    hi I have to following code to fill in a combobox with the items from a recordset. I want to show the Description and use the iD as an idex for each item. The folloeing code gives me an error "Invalid Procedure Call or Argument" on the bold line. If Not rst.EOF And Not rst.BOF Then...
  5. sergiog

    Passing paramters to Class_Intialise

    Hi is it possible to pass parameters to the Class_Initialise event of a class ? thanks
  6. sergiog

    BindingCollection Error

    Hi I have a class acting as a datasource. In it i have an ADO recordset which i populate with the records from an Access table. I have a bindingcollection on a form and the datasource is set to the class and the recordset is returned as the datasource. Textboxes are then added to this...
  7. sergiog

    Simple Recordset AddNew giving error !! plase help

    Hi I have the following code for adding a new record to a table: (the recordset is an ADO recordset) rstVacTypes.AddNew rstVacTypes.Fields("Ref") = txtRef.text rstVacTypes.Fields("Description") = txtDesc.text rstVacTypes.update on the first line, it's giving me an error...
  8. sergiog

    Property Let Not working

    Hi I have the following code in a Control I made: Public Property Let ShowRecNo(Show As Boolean) If Show Or Not Show Then txtRec.Visible = Show End If PropertyChanged ShowRecNo End Property Before it goes through the line saying "txtrec.visible = show&quot...
  9. sergiog

    Getting the current procedure name and line number

    Hi Can you get the current procedure name and line number in VB to insert in an error handler ? cheers sergio
  10. sergiog

    Checking if a parameter is of the specified enumerated type

    Hi am setting up an ADO connection string at runtime and i have a procedure accepting parameters for the commandtype and the commandtext. I have set the commandtype as adCommandTypeEnum so that the intellisense comes up when calling the procedure. how can i check that the passed parameter is...

Part and Inventory Search

Back
Top