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

    Fastest way to add an Array to a table

    Goodmorning, I've got a 2d-array with about 1000 rows and 5 columns, now I want to write this into the database. Now I just have a loop through the Array and write each line seperately to the database. for x=1 to ubound(array) rs.adddnew rs![Field1] = array(x,1) rs![Field2] = array(x,2)...
  2. Karja

    Problems with Sorting a query with subqueries

    Goodmorning, I've got a query where some fields are the result of a subquery. The query that causes me trouble is: SQLs = "SELECT SecurityCode, Holding, iif([TypeSubCode] Like '161*', 0, 1) As TypeOption, " & _ "(SELECT Value FROM G_MarketData_BB WHERE G_MarketData_GP.Bloomberg =...
  3. Karja

    Query: Joins with data from more than 1 row

    Goodmorning. I've have a question about building a query. Basically I have two simple tables: tbl_Securities ID Name tbl_BloombergInfo ID ID_Security (foreignKey) TypeOfData Value The first table consist of all kinds of securitycodes (stocks, bonds, options, cash) etc. etc. The second table...
  4. Karja

    Many-to-Many - populate listboxes

    Hello there, I am building an Access application to store information of Investments Funds and their Restrictions. There is more than one Fund and more than one Restriction. Each Fund can have multiple restrictions and each restriction can be attached to more than one Fund. So I created the...
  5. Karja

    Can't open Accessfile - The parameter is incorrect

    Goodmorning! I was working on my database & VBA and saved my work. After that I was not able to enter the .mdb file again. The system prompts me: N:\.....\Administration.mdb The parameter is incorrect I just cannot open my Database. We are working in a Citrix environment. Access2003 / Windows...
  6. Karja

    File not found - open "filename" for output as 1 (VBA Excel)

    Hello there, system: VBA Microsoft Office 2003, win XP SP2 I've got a very strange problem and I was wondering if somebody of you could help. Suddeny a VBA program does not work anymore. It stops at the following line: Open "Datafile.txt" For Output As #1 Then the system comes up with 'file...
  7. Karja

    Change FileDateTime of a Document in VBA

    Goodmorning, Is there a way to change the 3 FileDateTimes (creation, acces, lastwritten) of a file with VBA? Any help appreciated. Karja,
  8. Karja

    Picturebox Collection - How to approach? (VB2005)

    Hello there, This is more the less a follow-up on my previous post "Names of form Controls - Conditional Calling". I am making a card game. There are a lot of places on the table where a specipic card must be displayed or hided. The accomplish this I wrote the follwing: Public Sub...
  9. Karja

    Names of Form Controls - conditional calling

    Hello, The title might a bit fussy but I could not come up with something better. I was wondering whether somebody could supply me with a tip on the following: In a Form I've got lots of pictureboxes. Here is a bit of my code: If p = 1 And n = 1 Then Me.PictureBox11.Image = objImage...
  10. Karja

    Data binding / update table

    Goodmorning, I've got a small question/problem: I am using a Form with complete data binding. When I make some changes to a record and I close the Form the changes are not reflected immediatly in the corresponding table. When I close de Access file en re-open it, the change are visible in the...
  11. Karja

    Sorting on a mingled field

    Goodmorning, I am trying to sort a listbox on a field that is the result of two fields combined with an iff-function. De query works fine untill I try to sort on one of the mingled fields (con1 or con2). The system just prompts for the variable Con1. Q: How do I tell the system that it should...
  12. Karja

    Excel: edit properties commandbutton on sheet

    Goodmorning, I've got a (probaly very silly) question: I've written some VBA stuff to control some processes in Excel2003. On several worksheets I put some commandbuttons assiociated to macro's. This works fine. But now I want to change the locations of the buttons and some other properties...
  13. Karja

    Excel Textbox behaviour

    Goodmorning, I am using a form in a small Excel application that uses default values. Now I am searching for a way that when the user actually enters te field by the tab or just by clicking the field the whole text is selected. So that you're not modifiying the text but in fact replacing it...
  14. Karja

    Textfield Size

    Goodmorning, I am building a small CRM for personal use and I want to be able to copy and paste emailconverstation is my database. The problem is dat the max. size of a text field is 255. I need more. As this problem isn't new perhaps someone knows a clever way to process large tekstfields in...
  15. Karja

    Excel Application - Problem with Links after copying

    Goodmorning. I've got a irritating problem with my excel-application. This is the issue: I've got a quite complex application with several Visual Basic modules. Working with the application consists of three stages. The general idea is that after each stage the application copies itself to...

Part and Inventory Search

Back
Top