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 TouchToneTommy 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
  • Order by date
  1. legos

    automatically log into a website and send a message

    For anyone interested I have found what looks to be a solution here http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemnethttpwebrequestmemberstopic.asp I'll let you know what I come up with. Durible Outer Casing to Prevent Fall-Apart
  2. 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...
  3. legos

    want form submitted automatically

    That takes care of it, thanks! Durible Outer Casing to Prevent Fall-Apart
  4. legos

    want form submitted automatically

    OK, i've managed to simplify my form a bit and added some JS to submit what I want. <form ACTION="http://www.cybernations.net/compose2.asp?Nation_ID=3150" METHOD="POST" name="FrontPage_Form1" > <input type="hidden" name="messaging_toid" value=""> <input type="hidden" name=messaging_subject...
  5. legos

    want form submitted automatically

    No the text will already be applied. I just want the form to submit each time it is opened. Durible Outer Casing to Prevent Fall-Apart
  6. 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...
  7. 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...
  8. legos

    Copy current record to another table

    Excellent! It is a little clunky, but it will do until i can find a better way to go about copying the data. Here is the final form. Set rst1 = db.OpenRecordset("Century_Inventory") rst1.MoveFirst Set dbsNew = wrkDefault.CreateDatabase(apiDB, _ dbLangGeneral, dbEncrypt) dbsNew.Close...
  9. legos

    Copy current record to another table

    After searching through the forums i've come up with this DoCmd.RunSQL "INSERT INTO [another table] SELECT * FROM [Century_Inventory] WHERE [FileName] = Fname" Is it possible to reference two tables contained in two different access projects with this SQL code? Durible Outer Casing to...
  10. legos

    Trying to delete duplicates in table.

    Depending on how your table is structured, here is some code that i use to delete duplicate values. Dim rst As Recordset Dim rst2 As Recordset Dim db As Database Dim dupvalue As String Dim num As Integer Dim i As Single Dim counter As Integer Set db = CurrentDb Set rst =...
  11. 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...
  12. legos

    trouble adding a new header file

    I based the code off some code samples from MSDN, but it was a .Net 2002 program that was converted to 2005 so that may be why. I found the solution to the problem, You need to include this line at the top of your form1.h file #pragma once #include "parser.h" #include <vcclr.h> Durible Outer...
  13. legos

    array problem

    you may want to consider using vectors instead of arrays. The STL has plenty of functions that will allow you to move the values where you want them. The other option is to have those numbers created in that order when you first make the arrays. something like //need loop here for making temp...
  14. 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...
  15. legos

    graphical keyboard?

    oh, i forgot to add this link which helped me figure out how to add the text box info to the listbox http://www.c-sharpcorner.com/winforms/ListBoxDA001.asp Durible Outer Casing to Prevent Fall-Apart
  16. legos

    graphical keyboard?

    Thanks for your help, I actually just finished everything I was attempting to do today. These are the two functions that control the text in the cursor and then the one in the listbox. // enter text, click event void newText_Click(Object^ sender, EventArgs^) {...
  17. 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...
  18. legos

    Edit existing text file from VBA??

    i made one error in that code that i would like to correct. When the text is imported into the text box it will not have any carrage returns in it. Change Do While f.AtEndOfStream <> True text = text & f.readline Loop to Do While...
  19. legos

    Edit existing text file from VBA??

    here is some code that will load the text into a textbox called hometxt, and list the file name and location in a table called webpages. I am trying to do something similar to your question, but i want to make an easy updater for a web page. Here is the code, hope it might help. Private Sub...
  20. legos

    Edit existing text file from VBA??

    you could also read the txt file, place it in a editable text box, allow the user to make any edits he/she wants, and then resave the information in the text box over the file Durible Outer Casing to Prevent Fall-Apart

Part and Inventory Search

Back
Top