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 SkipVought 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: simarik
  • Order by date
  1. simarik

    BDK1.1 - "Could not create event adapter"

    Thanks very much, Haslo. Yes, it worked very well and I am on my way to developing new beans. Oh yes, another mistake I made was to set PATH=...;c:\jdk1.3.0_03\bin\javac.exe;... The javac.exe part had to be removed. P.S. I voted you for the "Tip Master Of The Week". Narayanan...
  2. simarik

    Code to Create a Table

    pardon me, in your code, it makes sense. Narayanan Srinivasan coolie91@hotmail.com Brothers and Sisters from India, if you have any recent news regarding F-1 to H-1B visa transfer, please e-mail me. Thanks.
  3. simarik

    Code to Create a Table

    i have used db.close before and it does not generate an error, but since you are actually not opening a new database (it's already opened for you), it's a technical mistake. Access probably ignores it. ;) Narayanan Srinivasan coolie91@hotmail.com Brothers and Sisters from India, if you have...
  4. simarik

    Code to Create a Table

    Simply use DAO's ability to programmatically create tables dynamically. Dim dB as Database Dim tableName as TableDef Dim field1 as Field Set dB = CurrentDb() Set tableName = dB.CreateTableDef() tableName.Name = "name" ' create a text type field with a length of 15 Set field1 =...
  5. simarik

    Transpose data into fields

    Hello, my problem is very similar to this one. There is a separate thread that mentions the problem in detail, called "Creating a dynamic column report..." or something, posted on the 29th of :)last year:) (gosh, 'tis been a year, and still no reply?:) I have a cross-tab query that...
  6. simarik

    sort function for array elements

    I haven't looked at the entire program cautiously, but one thing instantly caught my eye. Inside the 'for loop', why are you stating the while condition as &quot;index < arr.size() - 1&quot;. Shouldn't it be &quot;index <= arr.size() - 1&quot;. From your while condition, the procedure will not...
  7. simarik

    borland 5.02

    Hey. I have not checked any of the above answers but this is what I do to fix the problem. Always create a project (New -> Project). Then, a console appears. After typing in the file name etc. In the Target Type list box provided, choose EasyWin(.exe). Platform should be set to Win 32. Under...
  8. simarik

    Preventing record navigation

    If it's only a data-entry form, open the form with navigation buttons diabled. write an event-procedure for the exit event of the last control.This procedure should check for data presence in all other fields. If yes, enable the navigation buttons.<br><br>Dim ctl as...
  9. simarik

    Max number of users for a database......

    Access might support more than 5 users, but getting optimal performance from an MSDE strictly recommends 5 simultaneous users or less. The first two questions in this FAQ states clearly so:<br><br><A HREF="http://msdn.microsoft.com/officedev/technical/techfaq.asp"...
  10. simarik

    Where are my wizards!?

    Excuse me Miss Tasmin Zimak, for addressing you as 'Mr.' That was careless of me. <p>Narayanan Srinivasan<br><a href=mailto:coolie91@hotmail.com>coolie91@hotmail.com</a><br><a href= > </a><br>Brothers and Sisters from India, if you have any recent news regarding F-1 to H-1B visa transfer, please...
  11. simarik

    Newbie Question about VB

    My mistake! The first link is NOT 'about.databases.com' BUT 'databases.about.com'. Pardon my oversight. <p>Narayanan Srinivasan<br><a href=mailto:coolie91@hotmail.com>coolie91@hotmail.com</a><br><a href= > </a><br>Brothers and Sisters from India, if you have any recent news regarding F-1 to H-1B...
  12. simarik

    Where are my wizards!?

    Mr.Tasmin Zimak,<br><br>Frankly, I do not recall any wizards associated with adding combo boxes to forms. But if I am mistaken, Access should automatically inform through a message that some or all of the wizards are not installed, and if you prefer to install them. In any case, you might want...
  13. simarik

    Newbie Question about VB

    Jayfro,<br><br>Two of the decent resources on the web are:<br><br>about.databases.com<br><A HREF="http://www.vbatutor.com" TARGET="_new">www.vbatutor.com</A><br><br>There is a good book by ken Getz and Paul Litwin that I have<br>heard about. I use a different book but will definitely get this...
  14. simarik

    1/2 of my hard drive is missing!

    If you have Partition Magic, it should still show the entire drive space, even if it's not formatted to hold a file system, right? <p>Narayanan Srinivasan<br><a href=mailto:coolie91@hotmail.com>coolie91@hotmail.com</a><br><a href= > </a><br>Brothers and Sisters from India, if you have any recent...
  15. simarik

    Relationships

    I am also new to Access.<br><br>Relationships are important to bring together information, using queries, that you have separated in different tables. Three types: Inner Join, Left Outer Join and Right Outer Join.<br>When two or more tables are inner-joined, a query based on these tables fetches...

Part and Inventory Search

Back
Top