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

    How to capture where I'm right mouse clicking?

    I have 2 datagridview on a form, and I want to capture which datagridview the user right mouse click on. How can I do that?
  2. gundie

    Can a VB.net application return a value?

    I have 2 vb.net applications (App1 & App2). What I'm trying to do here is have App1 call App2 via shell command, and have App2 return some results back to App1 after App2 is finished running. How do I do that?
  3. gundie

    How to check if a file is opened by another user?

    I'm using Access 2000, in VBA, how do I check whether a file (an Excel file) is opened, or in used, by another user?
  4. gundie

    Save Report to PDF format Programmatically

    I've created a report (not CR) in VB.net, and I'm able to view the report using a report viewer, however, I want to be able to export this report as a PDF file. How do I do that?
  5. gundie

    Disabled multi-line text box that's scrollable... possbile?

    Is it possible to make a multi-line text box still scrollable while it's disabled? The closest I can achieve this is to set the text box's ReadOnly property to false, which will gray out the text box, and still scrollable, but the text in the box remains black instead of being gray. Changing...
  6. gundie

    How to share dataset among two forms?

    I'm new to VB2008 and SQL Server, and need some help. I have two forms (frmCustomer and frmDetail). The frmCustomer has a datagridview containing general data of customers, and a button to open frmDetail, which contains each customers detail information. All data modification is done on...
  7. gundie

    How to convert String to Form?

    I have a table that contains a list of users and their access to certain forms. User Form Tom Form1 Jane Form1 Jane Form2 Peter Form3 This table is read when the application first loads. How can I convert the form string (Form1, Form2, Form3...) to a form name...
  8. gundie

    How to add subform (like in Access) in Visual Basic?

    I have a main form, and I want to embed a subform (similar to Access) into this main form. I want to display the corresponding subform base on a combo box selection on the main form. How can I do that?
  9. gundie

    VB2008 - Import from Excel spreadsheet

    I'm a very newbie on VB2008. I'm trying to to import data from an Excel spreadsheet into a SQL database. How do I do that?
  10. gundie

    Sort datagrid

    How do I sort the datagrid programmatically?
  11. gundie

    Go back to original record after Add is cancelled

    I have a datagrid on a form that's bound to a table(ID, Company, Contact). I've created two buttons, one for Add function (using .AddNew), one for Cancel (using .CancelEdit). When I click the Add button, it shows a new record for add, no problem so far. During the Add function, when I click...
  12. gundie

    Go to a specific record on a different form

    I have a main form (Form A), and I want to create a Search form (Form B). The Search form functions like a filter, that lets me filter down to a subset of records, based on criteria, that displays on Form B in a table via a subform. After I found the record that I'm looking for in Form B, I...
  13. gundie

    Check if table exist

    How can I check whether a table already exist in the current mdb?
  14. gundie

    Revision Information Missing

    I'm kinda new to Delphi programming, so please bear with me. At work, I'm maintaining some code written by someone else. Everything was fine for a while, until I noticed with the last 2 to 3 builds that I created, that: 1. the version/revision information that I defined in 'Option' no longer...
  15. gundie

    How do I go to a specific record?

    I have a table with company admin data (company name, address, phone...) bound to a form. Within the form, I also have a combo box with a list of company names in the table. I want to be able to: 1. Pull up any company by using the combo box, and 2. Search for a company by using CTRL-F...
  16. gundie

    Lock columns in a table when through a subform

    I'm using Access 2000. I want to display a table through a subform, however, I want to lock the table in such a way that column order can't be change by simply highlighting the column and drag it to other location/order. How can I do that?
  17. gundie

    Individual report by records in table

    I have a table of about 50 customers (company,fax number) that I want to fax info to using Winfax (automated). Steps: 1. Create report containing their company name within the document 2. Fax using Winfax (automated) 3. Move to next record, and repeat How do I create individual fax broken...
  18. gundie

    Change printer driver in Access 2000

    I'm writing a program in Access 2000 that will send out faxes to customers. What I want to do is: 1. Start program 2. Change default printer driver to Winfax 3. Fax documents 4. Restore default printer driver to original I've looked into ActivePrinter, but Access is giving me a "Compile...
  19. gundie

    Dynamic Query

    I need to write a program to dynamically compare two tables. First the program imports and create tables of a list of weekly spreadsheet from a folder (1/1/2006, 1/8/2006, 1/15/2006...). The user will need to select tables to compare via combo boxes (for example, the user selects 1/1/2006 and...
  20. gundie

    Importing from Excel to Access

    I'm writing a program to automate importing Excel spreadsheets. I'm running into a formatting problem for a 'PartNum' column (alphanumeric). This column is formatted as Text in Excel, and after the import, some of the values from the 'PartNum' column was imported as scientific notation. For...

Part and Inventory Search

Back
Top