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: enak
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. enak

    Select data from certain quarter

    Is there a way to select the data from the current quarter if all I have is today's date? Thanks, enak
  8. enak

    HELP, I don't know where to start

    I have been given the task of creating a rather large report. It contains tables and graphs of stock portfolios for each account. All of the data is contained in an Access db. I have never done CR before. I do not have to use CR but I thought that it would be the best way to do the report. I...
  9. enak

    What to use?

    I have a large report that needs to be created from a database. The sample report is 94 pages. The report consists of graphs, tables, footers, headers, and at the end some lengthy text that is a summary of the data on the tables. My first thought is to use Crystal Reports that comes with VS.NET...
  10. enak

    Format MS Access data

    I am pulling some data from an Access database. There are two columns that are of the type currency. If I query the table through Access these two fields are formatted correctly as currency. However, when I execute the same query through a .net winform application the data is formatted as...
  11. enak

    How to get Multiple selections from a listbox?

    I am having problems with the listbox. I need to get multiple selections from the listbox. This is the code that I am using: Dim itm As ListBox.SelectedIndexCollection Dim i As Integer = 0 'Figure out which classifications have been selected. For Each itm In...
  12. enak

    How to populate a combobox and listbox

    What is the best way to populate a combobox and a listbox? I need to populate them from a database. I can do it with the following code: While dr.Read Me.lstClassifications.Items.Add(dr.GetValue(1)) End While but I am not sure that I am getting id's along with the display value. I am...
  13. enak

    Problems getting data from Access 2000 DB

    Why can't I get the ExecuteReader to work? I keep getting the error: No value given for one or more of required parameters. What does this mean? I can connect to the database. Here is my code: Public Function getDataReader(ByRef sSQL As String) As OleDb.OleDbDataReader Dim myCMD...
  14. enak

    How to connect to secure Access 2000 database

    I need to connect to a secure or password protected Access 2000 database. I am new to Access. I am using VB.Net as the frontend but I need to connect to an Access database. Please help Thanks, enak
  15. enak

    Soften edges of image

    I have an image that I have cut and pasted on a different background. I need to make it look like it wasn't cut and pasted. I think that I need to soften the edges of the pasted image. How can I do this? Thanks, enak
  16. enak

    Can not access the network

    My home network is completely wireless. I have 4 machines on the network. Suddenly, my server can not access the network. I have checked the device through device manager and it is ok. I have uninstalled and reinstalled the drivers. Nothing works. I don't get any error message. I am using...
  17. enak

    Text is not sharp

    I am trying to create a text logo for myself. I am using Times New Roman, Bold Italic, 48 pt, Smooth. When I print it the edges are jagged and don't look good. I am using Photoshop 7.0. How can I fix this? Thanks, enak
  18. enak

    Can not access the network

    My home network is completely wireless. I have 4 machines on the network. Suddenly, my server can not access the network. I have checked the device through device manager and it is ok. I have uninstalled and reinstalled the drivers. Nothing works. I don't get any error message. I am using...
  19. enak

    Truncate not working

    I need to update a DTS package. One of the processes that it uses is deleting all of the data from a table. I have copied this from the production server onto a test server. I can not get the process of deleting the data to work. The DTS uses the following statement: truncate table...
  20. enak

    I need to place appointments in an Exchange 2003 calendar.

    I have an application that I use WebDAV to create calendar appointments and then send them out to the invitees. This works but when the invitee receives the invitation they must drag the appointment to their calendar in order for it to get set. I want to be able to set the appointment for them...

Part and Inventory Search

Back
Top