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

    automatically log into a website and send a message

    I have a website and I am trying to implement a mass messaging script. These are the steps that I need to take 1. go to page "http://www.mywebsite.com/login.asp 2. automatically Submit Username and Password values 3. Go to page "http://www.mywebsite.com/compose.asp" 4. automatically Submit...
  2. legos

    want form submitted automatically

    I have a form and instead of the user pressing a button, I want the form to submit automatically. Here is what I have so far: <form ACTION="http://www.cybernations.net/compose2.asp?Nation_ID=3150" METHOD="POST" name="FrontPage_Form1" language="JavaScript"> <div...
  3. legos

    link a table from a separate database to another separate database

    Hi everyone, I am trying to link a table in a seperate database project to another project. Here is where i'm stuck DoCmd.TransferDatabase acLink, "Microsoft Access", countyDB, acTable, api, api countyDB is the location of the database that I want to link the table to. api is the name of the...
  4. legos

    Copy current record to another table

    Hi everyone, this is probably a simple problem, but i can't figure out how to slove it. I have a VB module that creates a new database with a table that has the same structure as my current database. I now want to copy the current record from my current database into the new database and new...
  5. legos

    trouble adding a new header file

    Hi everyone, I'm having some issues with a header file i want to add to my project. Here is the headerfile code. #pragma once using namespace System; class Parser { public: Parser(); String^ parse(String^ equ) { String^ answer = "answer"; return answer; } }; I have #include...
  6. legos

    graphical keyboard?

    Hi everyone, I am making my first attempts at VC++ programming, and I could use a bit of help. Here is what I am trying to make, it is something similar to a visual keyboard and I just need an example to get me started. The user will press buttons in the GUI representing keys on a keyboard...
  7. legos

    convert image to thumbnail

    Is there a way to resize an image using VB. Say i want an jpg image to be scaled down 50% Durible Outer Casing to Prevent Fall-Apart
  8. legos

    can you ftp with access VB?

    Hi everyone, i have a question. I am writing a program that will be used to update a web page. I've finished all the coding that will change or create an html file, ect. But the pages will still need to be loaded to the server. This can be done manually, but i would prefer that the users of...
  9. legos

    Print an image

    i want to put a button on a form that allows me to print an image. i have a field on a table that lists the location of the file. The files are about 10 inches wide, but manny feet long, banners essentially. Durible Outer Casing to Prevent Fall-Apart
  10. legos

    merging image files or adding text to an image

    I have an image that is a .tif file. Also I have a table with ID numbers related to the files. My question is, is it possible to add this number to the top left corner of the image file. I would like it to apear in such a way that the ID number is in black on a white background. If anyone can...
  11. legos

    mergeing images or typing on an image

    I have an image that is a .tif file. Also I have a table with ID numbers related to the files. My question is, is it possible to add this number to the top left corner of the image file. I would like it to apear in such a way that the ID number is in black on a white background. If anyone can...
  12. legos

    searching for a line of text in a text file

    i have a text file with thousands of lines each line contains an id number is there a way i can search for this ID number in the text file without searching each line individually. say i need to find the ID number 4232101102 the number line it is on is unknown. How can i go directly to that...
  13. legos

    SQL changes field to true if there is a match

    I have 2 tables, one is a table with items in stock and a second is a table with items that are on order. When an item that is on order is added to the items in stock i want to design a query that will change a value in the order list to true/yes so i know that the item was recieved. Both...
  14. legos

    copying table to excel with fieldnames

    The following code takes the data contained in a table and puts into an excel spreadsheet. The only problem is that none of my field names are included in the first row of the excel file. the first row remains blank. Dim mydate mydate = Date Dim objXL As Excel.Application Dim objWkb As...
  15. legos

    selecting a date range in a recordset

    I am exporting a table into excel and i have all of the code i need with one exception. I need to select records that were entered within the last 2 weeks. The table has a field called orderdate with the date entered for each record. This is the line i need to change. Set rs =...
  16. legos

    Query not updating fast enough

    I have the following code that updates a table called importlist. The table importlist is then used to make a query called stored2. Stored2 is a query that displays the matches between 2 tables. The matches to stored2 to are then put in a table called stored and displayed on a form. The...
  17. legos

    combination listbox checkbox

    is there a way to display a list box where each entry in the listbox has a check box next to it. I want the user to be able to select if certain items in the listbox have some sort of priority. Durible Outer Casing to Prevent Fall-Apart
  18. legos

    importing a text file into a form

    I am creating an import list function for a form i am working on. I can do this easily by having the user type in the path to the file, but i was wondering if there was a way yo do it so that the user could select the file the way most programs do. ie having a file window pop-up and searching...
  19. legos

    loading a sheet from an excel file

    I have about 50 to 100 excel files. Each file has about 20 sheets on it. I want to write a script that will bulk load the information on the sheet with the name survey_point into a table in access. I already know how to read info from text files, but i've never done linking between access and...
  20. legos

    creating a progress bar?

    i am writing a program that drives and access form and i want to make a progress bar so i know how close a task is to completion. I want it to be based on a for loop and display what number it is on in the loop and the amount of times the loop has to run. Also if possible but not nessisary i...

Part and Inventory Search

Back
Top