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 Wanet Telecoms Ltd 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: briggsy79
  • Content: Threads
  • Order by date
  1. briggsy79

    scroll pane not appearing

    Hi all, I'm trying to make an app that shows a label inside a scroll pane. For some reason it doesnt work. And I really dont have a clue why...im sure its simple. import java.awt.*; import java.awt.event.*; import javax.swing.*; public class MainFrame extends JFrame { BorderLayout...
  2. briggsy79

    exporting variable values to pdf

    Hi, I was hoping to create a program that would allow users to click lots of radio buttons, check boxes, select from combo boxes..etc. Then all this information could be exported to a report hopefully in the pdf format(Just because then they wouldn't be able to edit it, and it would be...
  3. briggsy79

    How to open a recordset like this?

    Hi everyone. I have a problem, i have been trying to use the SHAPE provider to open a recordset like the following, it will be displayed on a heirarcharcial flex grid: (The "+" expands to show child records) NAME TEST SCORE -David Test 1 30 Test 2 31...
  4. briggsy79

    Will this be easy

    Hi all (im new to these parts of town) A computer technician has asked to look at a database, and see if i could create one like it (but better) in SQL. I have never used SQL before and even had trouble installing it - i have win2000 prof (and SQL server 2000 standard edition). He wants this...
  5. briggsy79

    Deploying to a multi-user machine

    Hi all. I was wondering how i can install a program under a WinNT machine to all profiles, or more to the point to a local machine. Also how can i write to the registry not under 'HKEY current user'. Becuase at the moment I have a program that needs to be installed to every users profile on...
  6. briggsy79

    Network Deployment

    Hi all, When installing my program on a WinNT machine my program installs to the users profile, and not the 'computer' what can i do to change this (i want anybody who runs that computer to have access to it)? And also if I want to write to the registry but not to HKEY curernt user what...
  7. briggsy79

    Missing values in filtered recordset

    Hi everyone, This code is designed to get the numer of times different names appear in a recordset, and then filter the list down to the top 10. At the moment it misses any names that begin with A and maybe more (one name 'Alby' appears 4 times but is still not present in the filtered...
  8. briggsy79

    Hotspots triggering a click event (inVB!)

    Please help me, I would like ot divide a map i have into different areas (hospots) using another program, i.e. Photoshop, Dreamweaver, whatever will do it. And then each of those areas when clicked on will trigger a click event. I have tried seperating the picture into different...
  9. briggsy79

    I'm sorry, but...

    How can i send an email to myself (bug reports) from a program i have distributed? I would rather do it without outlook, the message would always have the same recipients, and never atachements. I know this questiuon has been asked a bit, but i have failed to find any answers that satisfy my...
  10. briggsy79

    Reverse Order of recordset

    Hi all Is there anyway to reverse the order in which you recordset is selected, currently it goes from lowest to highest, i want it to go highest to lowest. Thanks
  11. briggsy79

    Regular Backups

    Hi all! Just after any tips anyone has on ways to backup an access database, every two days or so. What is the best way to do such a thing? Thanks. -David
  12. briggsy79

    Copying a recordset

    Hi all Is there any way to coppy a recordset withoout using a stream or clone method. The first recordset will only ever have one record so it doesn't have to save time, just work. I cannot use stream or clone as the first recordset has been filtered and when cloned then set as the datasource...
  13. briggsy79

    Please Help Why wont this work?

    Please Help Why wont this work? It should open a new recordset with single record in it, the one that the cursor is at on in adoRecords Dim nRS As Recordset Dim b As Variant b = adoRecords.Bookmark Set nRS = adoRecords.Clone nRS.Filter = Array(b) It is then used as the datasource for a...
  14. briggsy79

    i am trying to show only a single r

    i am trying to show only a single record in a datareport (the record another form is viewing), it isnt working. i do this (scopio66 suggested it): Dim nRS As Recordset Dim b As Variant b = adoRecords.Bookmark Set nRS = adoRecords.Clone nRS.Filter = Array(b) But when i set the datasource to...
  15. briggsy79

    Why isnt this woking?

    i am trying to show only a single record in a datareport, it isnt working. i do this (scopio66 suggested it): Dim nRS As Recordset Dim b As Variant b = adoRecords.Bookmark Set nRS = adoRecords.Clone nRS.Filter = Array(b) But when i set the datasource to nRS, i still get the entire database in...
  16. briggsy79

    datareport-ado

    is there anyway i can put a single record/row on to a datareport, the one the cursor is at on a different form? Thanks
  17. briggsy79

    Missing record

    how come my ms chart doesn't realise that i have a record with a field value of "a". I use this SQL to open the recordset: adoRecordset3.Open "Select Name, Count(*) as How_many_times_name_appears from reportertb1 Group by Name Order by Name", db, adOpenStatic...
  18. briggsy79

    SQL, Charts, General newbieness

    I have been asking question about graphing the number of records in a database with the same name (value in a field)for about a month or more, i have finally found a (very dodgy!)half solution, here's what i did: adoRecordset3.Open "Select * from reportertb1 order by Name", db1...
  19. briggsy79

    Please help with my chart

    Please help me. I have written this code in an attempt to count how many times a distinct name appears in a recordset set. I am a novice but Im sure i have declared all variables. Set db = New Connection db.Open "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program...
  20. briggsy79

    DataCombo DataSource

    Hi all. How do you set the datasource etc. for a dataCombo using code. I wish to link it with an ADODC using jet 4.0. The open recordset is named adorecordset. I wouldn't have a clue how to do it i have been trying but it just isn't working. Thanks a heap

Part and Inventory Search

Back
Top