Search:
Type: Posts; User: bluesource
Search :
Search took 0.09 seconds.
August 20th, 2009 03:33 PM
var win = window.open(page,'window','width=270, height=155, left=300, top=200');
alert('1');
win.onunload = function()
{
alert('2'); ...
Hey I need a regular expression for a validation control on my password field:
Requirements
Must contain 1 digit
Entire password must be 6-10 digits
I have tried this, this ensures 1 digit,...
November 1st, 2007 10:21 AM
I have a 2.0 ASP.NET web form. I am using VB.NET. I have a web server button control on the form, btnSubmit. I also have a lot of server validation controls on the form to validate the fields.
...
February 20th, 2007 08:23 AM
If I run GetModuleFileName within the dll, it returns the name of the dll, not the application that invoked the dll.
February 19th, 2007 12:02 PM
The form is a part of the dll and a reference to it is passed into the COM exe, but the COM exe is using FindWindow with the application name to see if it exists.
Unfortunately modifying the COM...
February 19th, 2007 11:10 AM
This is what is happening.
1) We have a stand alone COM exe that runs.
2) Usually an application invokes the COM to do its work. When the application invokes the COM exe it passes in the...
February 19th, 2007 08:22 AM
In a vb 6.0 dll how can I find the App.Title of the calling application (the application that invoked the dll).
App.Title only gives me the title of the dll. Do I have to pass this is in as a...
December 15th, 2006 11:41 AM
I have 2 db's, source and target. I am transferring data from source to target. Source db tables have a few extra columns than target db, but the data transfer must still work seamlessly.
I...
November 4th, 2004 01:56 PM
Thanks for the link, but the the example on the url adds and deletes tasks from the schedule tasks on the computer the application is running on.
How can I view whether a task is running or not on...
November 4th, 2004 07:40 AM
November 1st, 2004 01:01 PM
I know this is pretty vague, but is there a way to view whether a scheduled task on a different computer (server) is running or not using vb code?
Thanks for any help,
Kevin
October 19th, 2004 02:19 PM
Thankyou.
I just learned our system allows 24:00 as a valid time
10.19.04 & 24:00:00
is the same as
10.20.04 at 00:00:00
I'll have to code this special case we use.
October 19th, 2004 12:20 PM
Right, reguardless, it is not converted to 1200AM either. Apparently the Format function does not work properly? Do I need to write my own code to handle this particular case?
thanks
October 19th, 2004 11:16 AM
I am formatting a string like so:
.Column("StartTime").Value = Format(clsDateConvert.sShortTime, "hh:mm:ss AMPM")
This works perfectly most of the time, but if the sShortTime value is 24:00, it...
October 18th, 2004 09:10 AM
How can I obtain the GUID (class identifier) from a dll using visual basic code?
Here is how I instantiate the dll class:
Dim comSched As Object
Set comSched =...
October 1st, 2004 08:17 AM
Thanks guys, that's exactly what I was looking for... so simple. :thumb:
October 1st, 2004 08:09 AM
No, I simply want to use bookmarks. It is a part of the VB IDE so that you can place a marker (bookmark) at any point in your code and then toggle between those points as you wish... as opposed to...
September 30th, 2004 05:02 PM
How can I use bookmarks in visual basic? Where do I set to use them in the options?
I can see the menu for them in vb5.0, but do not know how I got them there. I can't see them at all in vb6.0
...
September 30th, 2004 04:53 PM
I need to obtain visual basic code to determine the "start-in" directory. The dir where the project is run from.
I cannot use the CurDir function because the directory is changed in various parts...
September 13th, 2004 11:18 AM
Thanks that's exactly what I was looking for. :thumb:
September 13th, 2004 10:52 AM
I would consider a valid string anything containing ascii codes 32 - 126.
1) How do I traverse through each letter in a string?
2) How do I convert a letter to an ascii code in vb?
My vb is...
September 13th, 2004 10:25 AM
How can I determine if a String variable contains a valid string? For numeric variables I can use IsNumeric, is there something similar for text?
August 9th, 2004 09:18 AM
Thanks Wiz, got it working!
August 5th, 2004 10:25 AM
Thanks, I tried loading my bitmap from the resource file I made like this:
frmProgress.pic.Picture = LoadResPicture(101, vbResBitmap)
When I run the app, I now get this error message:...
August 5th, 2004 08:15 AM
Thanks for your responses... there is one prob. The bitmap cannot be separate from the exe, it must be already loaded in the IDE. Know what I mean?
So I need 2 bitmaps already loaded in the...
Click Here to Expand Forum to Full Width