The Authorization header is simply a Base64 encoding of the username and password joined with a colon:
reader.setRequestHeader "Authorization", EncodeBase64(strUserName & ":" & strOauthToken)
There are plenty of Base64 functions out there, but something like this would work
Function...
I've had this in the past where it seems to remember an old break point, even if the code around it has changed. I think it's a form of corruption.
Try compiling the code (Debug -> Compilie VBA Code), compacting and repairing the database, exporting the code to a file then deleting the module...
I'm not sure if it's compatible with MS Access forms, but you could try looking into the MSComm control. This will allow you to interact with COM ports.
B.
----------------------------------------------
Ben O'Hara
I've not done this myself, but you could try taking a look at http://www.gpsvisualizer.com/map_input?form=google. This will import your data and give you a google map.
I'm not sure what it does about hosting, but it looks like a good starter for 10.
hth
Ben...
These url services just redirect from the shorter/encrypted url to the actual url. Open up Fiddler and watch what happens.
A GET is sent to http://www.baidu.com/link?url=mW91GJqjJ4zBBpC8yDF8xDhiqDSn1JZjFWsHhEoSNd85PkV8Xil7qccoOX3rynaE, which is returned with a status of 302 (which means redirect...
Mine works on my machine too. My example uses the same api timer as yours (SetTimer and KillTimer from the user32 lib). Perhaps the OS/version is the issue here. I'm using Access 2003 on windows XP. The same code (with a minor alteration) works in Excel 2007 too.
Are you using the exact code...
It's actually dead simple to use, and can be run in a module too. I imported the code into a test database and it worked almost first time.
Firstly create a new module (I've called it basMessageBoxTimer) and paste the first block of code into it (there's a handy "copy bas code" button which...
I must admit, whenever I'm exporting tables/queries to text files, I rely on this class.
It's much more configurable and is often more reliable in my experience.
hth
Ben
----------------------------------------------
Ben O'Hara
Take a look at the code on http://vbnet.mvps.org/index.html?code/hooks/messageboxhooktimer.htm
This will give you a configurable API messagebox that counts down for a user definable time.
hth
Ben
----------------------------------------------
Ben O'Hara
The S.W.Forms dll is installed in the GAC 'cos that's where it needs to sit to resolve all its dependencies. You may be able to find out what its dependencies are by changing the registry key as mentioned, but what you are trying to do is bypass the GAC, which isn't possible.
What is it you are...
I've done some quick googling & can't find any software called Sterling with a version of 6.2. Can you give some more details? Regardless of the software, there's usally some sort of string parsing functionality in it. Is there an equivalent to Instr() or Find() that you can combine with Mid()...
The answer was the JoinAlias method, with an alias placeholder:
Comment comment=null;
var results=session.QueryOver<Blog>()
.Left.JoinAlias(b=>b.Comments,()=>comment)
.SelectList(
list=>list
.SelectGroup(b=>b.Id)
.SelectGroup(b=>b.Title)...
I have two simple classes
public class Blog {
public Blog(){
Comments=new List<Comment>();
}
public virtual Guid Id { get; set; }
public virtual string Title { get; set; }
public virtual string Text { get; set; }
public virtual DateTime CreatedDate { get; set; }...
You should be able to use the ogr2ogr application.
Download and install osgeo4w from http://trac.osgeo.org/osgeo4w/ when you install it go to the advanced tab and make sure you install gdal-filegdb: OGR FileGDB Driver (There are details and screen shots here...
Your logic is wrong.
If your requirement is that the permission is Neither "Coaching Logger" nor "Admininstrator" then you need to use AND.
hth
Ben
----------------------------------------------
Ben O'Hara
You may also want to consider using the FileSystemObject which has a richer set of functionality for working with folders and files IMHO.
For your code, I suggest you split things up into individual functions so that your code works like:
PSEUDOCODE!!!!
for each xlFile in ListOfXLFiles
if...
The code I've posted doesn't save the document, it just outputs the xml as a string (that was all I needed for my testing).
To save the file you need to call the save method of the xml document.
hth
Ben
----------------------------------------------
Ben O'Hara
A couple of extra links you might find useful are http://www.w3schools.com/dom/ to give you the basics on using the XML DOM and http://msdn.microsoft.com/en-us/library/windows/desktop/ms764730(v=vs.85).aspx for the details of using the MS implementation.
Using those links you should be able to...
As I recall, you just comma separate the addresses:
strRecipient="user1@example.com,user2@example.com,user3@example.com"
but it's been a while since I had Lotus Notes on my machine. If that doesn't work, try using a semi-colon instead of a comma.
hth
Ben...
You're using HTML email, so doesn't your string need to be in html?
objMail.HTMLBody = "Ticket " & intTixNum & " has been entered into Ticket Tracker by " & strEmpName & " concerning " & strIssue & ". <br />" & strSomestr & " "
or
objMail.HTMLBody = "<p>Ticket " & intTixNum & " has been...
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.