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 bkrike 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 enak

  1. enak

    No data returned

    Thanks for the suggestions. I changed the * to % and it worked fine because I am using embedded SQL.
  2. enak

    No data returned

    Here is the query: Select (tblAcctMgr.fname & " " & tblAcctMgr.lname) AS Mgr, tblAccount.ID From tblAcctMgr,tblAccount Where tblAccount.ClassificationID = 3 And tblAcctMgr.ClassificationID Like "*3*" AND tblAcctMgr.ID = tblAccount.AccountMgrID Here is the code that I use to get the data...
  3. enak

    No data returned

    I have an Access 2000 database that I have put a Windows Form (VB.Net) frontend on. It all works fine until now. I have a report that I am trying to build where I have to retrieve account type data and from there retrieve account managers info. I use a datatable as part of a dataset to...
  4. enak

    Excel Charts

    Doesn't anyone know what is happening here? I really need some help.
  5. enak

    Excel Charts

    Has anyone been successful with working with Excel charts? I create a chart and place it in the existing spreadsheet as an object. I select a cell where I want the top left corner to be and when the chart is created it is in the general area but not in the exact spot. I need to be able to place...
  6. enak

    Working with Excel Charts

    I am sure that someone knows something about this. Any help, Please!
  7. enak

    Working with Excel Charts

    I am trying to put some Excel charts into a spreadsheet but am having problems with any type of formatting. Here is my code: Dim oChart As Excel.Chart Dim xlsAxisCategory, xlsAxisValue As Excel.Axes oChart = xlSheet.Application.Charts.Add...
  8. enak

    What is going on?

    This is the line that it is failing on: Set ctrl = Screen.ActiveControl
  9. enak

    What is going on?

    Thanks for the reply. I tried both of your suggestions and got the same error: "The expression you entered requires the control to be in the active window." The action will open a new window.
  10. enak

    What is going on?

    I have inherited an Access 2000 db and was asked to upgrade it to 2003. I did the convert to 2000-2003 format and it seems to be working fine. However, I have a listbox that when it is loaded an OnClick event is added. ctl.OnClick = "=ShowDaysEvents" When I click on the listbox I get the...
  11. enak

    How to delete a record with money columns?

    I have a table that I need to be able to delete some of the records. Here is my query: delete * from tblValues where AcctID = 13 and [Date] = #11/4/2005# and NetCashFlow = 297120.74 and MarketValue = 302030.00 The fields, NetCashFlow and MarketValue are currency fields. When I run the query...
  12. enak

    Problem clearing selections in listbox

    That was it, thanks. I just didn't see it.
  13. enak

    Problem clearing selections in listbox

    I have a listbox in a winform. It is set for multiple selections. However, I need to be able to un-select all of the items in the list. Here is what I am doing: For j = 0 To UBound(arClass) For i = 0 To Me.lstMgrClassifications.Items.Count - 1...

Part and Inventory Search

Back
Top