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
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...
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...
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...
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...
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...
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...
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 =...
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...
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...
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...
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...
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
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^)
{...
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...
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...
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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.