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 strongm 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: Lyubomyr
  • Content: Threads
  • Order by date
  1. Lyubomyr

    Environment problem!

    Hi! I have a problem. Probebly it is environment problem. I need to generate Excel report from my VB.net application. So, I connected the Excel refernce. On the line: [code] _Workbook workbook = workbooks.Add (XlWBATemplate.xlWBATWorksheet); [\code] program terminates and i have: Old format or...
  2. Lyubomyr

    problem MS Excel, can't use ordinary code

    I'm writing Dim xlApp As Excel.Application Dim xlWb As Excel.Workbook Dim xlSh As Excel.Worksheet xlApp = CreateObject("Excel.Application") xlWb = xlApp.Workbooks.Add() xlSh = xlWb.Item(1) xlSh.Name = "My Sheet"...
  3. Lyubomyr

    How to generate report as excel file?

    Hi! I have a need to output my report data into MS Excel file. (Which should be generated at runtime.) I know how to do it in VBA 6.0. But I spent 3 hours and havent't done anything. Please help. I don't really care if it would be VB.net or C#.net Thank you in Advance
  4. Lyubomyr

    Choice query problam

    Hi! I need to form query which should search for the customers thu the base. The customer table contains many fields such as company name, contact person, location and others. All i need it to find if it is possible to have one parametrized query and use as if i had several queries. Example...
  5. Lyubomyr

    Need to have global variable. How?

    Hi! I have start up form in C#.net appl. and I need to store somewhere the parameters gathered in it. Global variables are for that but don't know how to set them and where to place code. Thank you fot your future tip. LB
  6. Lyubomyr

    It it possible to use MS Access Queries in my VBA.NET app.

    I got a problem. I have MS Access DB. I'd like to use (access) MS Access DB queries in VBA.net (not rewrite them in my code). I scaned whole ado.net but all i found was info about implementing sql procedures from MS SQL, Oracle and others. MS Access can't work with sql procedures. Have any...
  7. Lyubomyr

    Hi! Problem with implementing MS Access DB in VB.NET Application

    Hi guys! I got some kind of problem. I have MS Access Database which hase tables and SQL queries. I have all types of queries: select, insert, delete. They also have parameters. I used to programme in VB6.0. It was simple to use the database and its queries in my VB6.0 applicatoin. But I...
  8. Lyubomyr

    Executing query from the application problem

    In MS Access have databse where I formed a query. But I can't use it in my VB.NET application without writing the qurey in the code of this application. In VB6 in RecordSet was method Open where I could write the name of my query and connection. In VB.NET I can't find such method. Guys help it...
  9. Lyubomyr

    Hi guys need qiuck help with simple question

    I have form in MS Access 2003 also i have query which has parameter. So i need to pass values gathered from the form fields to the parmeter of the query. I have situation when it doesn't want to take values from form but call standart MsgBox with proposotions to input parameter Thank you in...
  10. Lyubomyr

    Prolems of using "cout" from "iostream" in Visual C++.NET

    I've got problem of using "cout","cin" and others from iostream library. Using standard Wizard I formed Win32 Console Project. I just wrote cout<<"Hello World"; in _tmain fuction. Compiler says error C2065: 'cout' : undeclared identifier Please write me some advice. PS I checked in...

Part and Inventory Search

Back
Top