Showing results 1 to 25 of 321
Search took 0.99 seconds.
Search: Posts Made By: Memnoch1207
Forum: Random Thoughts 12-10-2004, 01:55 PM
Replies: 33
Views: 1,514
Posted By Memnoch1207
It's amazing how times change! I posted this...

It's amazing how times change!
I posted this thread 2 1/2 years ago.

Update:
1) The job I was supposed to get start, never happened.

2) When I approached this boss about a raise, he fired me...
Forum: Tech Discussions 05-20-2003, 05:21 PM
Replies: 38
Views: 1,315
Posted By Memnoch1207
I agree with TheProphet...after a relationship of...

I agree with TheProphet...after a relationship of mine failed miserably. I started going to movies by myself, just to break the boredom and loneliness...It has since grown on me...my wife thinks im...
Forum: Database and Reporting 05-20-2003, 05:10 PM
Replies: 4
Views: 413
Posted By Memnoch1207
Dim conn As ADODB.Connection Dim rs As...

Dim conn As ADODB.Connection
Dim rs As ADODB.Recordset
Dim sql As String

Public Sub Form_Load()
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=PathToMDB;Persist Security...
Forum: Web Programming 05-19-2003, 07:29 PM
Replies: 2
Views: 648
Posted By Memnoch1207
Function getFileValue(fldName) Dim...

Function getFileValue(fldName)
Dim objFSO,objTStream,fileName,arrLine
Set objFSO = Server.CreateObject("Scripting.FileSystemObject" )
fileName =...
Forum: Tech Discussions 05-17-2003, 03:15 AM
Replies: 14
Views: 713
Posted By Memnoch1207
How about "Social Insecurity"...man, that would...

How about "Social Insecurity"...man, that would be a cool name for a band.

Wait, you can't use that, I'm startin' a band just so I can use the name...

Now, let's see I need a singer, a bass...
Forum: Tech Discussions 05-17-2003, 03:07 AM
Replies: 5
Views: 294
Posted By Memnoch1207
Visual FoxPro Overview In my opinion...

Visual FoxPro Overview


In my opinion FoxPro is kinda like the big brother of MS Access.
Forum: Web Programming 05-17-2003, 03:04 AM
Replies: 6
Views: 477
Posted By Memnoch1207
Here it is......

Here it is... (http://simplythebest.net/scripts/dhtml_script_114.html)
Forum: General 05-16-2003, 03:53 PM
Replies: 3
Views: 355
Posted By Memnoch1207
you could easily achieve what you are wanting to...

you could easily achieve what you are wanting to do by creating a small form, with a timer and a couple of buttons. The timer is the key to having it disappear after a certain amount of time.
Forum: Excel 05-16-2003, 03:51 PM
Replies: 3
Views: 1,965
Posted By Memnoch1207
I just had a friend email me the EXCEL9.OLB file....

I just had a friend email me the EXCEL9.OLB file. Then I added it to a folder I created under Microsoft/Office/ and now the reference to it shows up fine....thanks for the help.
Forum: Web Programming 05-15-2003, 09:25 AM
Replies: 3
Views: 3,195
Posted By Memnoch1207
If she is going to continue programming for a...

If she is going to continue programming for a career, then it is essential that she learn how to program correctly using ADO, and not rely on some wizard in frontpage to write all the code for...
Forum: Database and Reporting 05-15-2003, 09:18 AM
Replies: 2
Views: 281
Posted By Memnoch1207
Are you wanting to do this from a VB application?...

Are you wanting to do this from a VB application? or by a macro from within Access?
Forum: General 05-15-2003, 09:13 AM
Replies: 5
Views: 424
Posted By Memnoch1207
you could do it one of two ways using...

you could do it one of two ways

using filesystemobject

Dim fs As FileSystemObject
Dim myFile As File

Set myFile = fs.OpenTextFile("C:\pathToFile\file.text", 1, True)

do until...
Forum: Excel 05-14-2003, 11:04 AM
Replies: 3
Views: 1,965
Posted By Memnoch1207
Object Library Reference

I am developing an application that uses the Excel Object Library...My system has Office XP installed, under my references I see the Excel 10.0 object library reference, but my client (who is going...
Forum: Installation / Documentation 05-13-2003, 08:38 AM
Replies: 4
Views: 820
Posted By Memnoch1207
What is the development machines OS? What is...

What is the development machines OS?
What is the client machines OS?

What version of adox are you using?

Have you tried to manually register the dll, by doing regsvr32?
Forum: Tech Discussions 05-12-2003, 11:48 AM
Replies: 38
Views: 1,315
Posted By Memnoch1207
I look at it completely differently. Call me a...

I look at it completely differently. Call me a heartless * * * (I've been called that before...hehehe) Simple fact is, if she wants to get back with you, and you want to get back with her...it will...
Forum: General 05-12-2003, 10:45 AM
Replies: 9
Views: 310
Posted By Memnoch1207
You can put it under which ever Sub you are...

You can put it under which ever Sub you are wanting to check if the form is active...under the form load sub, or command button click event...where ever you want to put it.
Forum: General 05-12-2003, 10:34 AM
Replies: 2
Views: 369
Posted By Memnoch1207
use the FileExists Method ...

use the FileExists Method


If(FileExists("C:\temp\" & lstSwfs.List(x))) then
If(FileLen("C:\temp" & lstSwfs.List(x))) then
VBA.FileSystem.Kill ("C:\temp\" & lstSwfs.List(x))
End If...
Forum: General 05-12-2003, 10:30 AM
Replies: 9
Views: 310
Posted By Memnoch1207
Dim frm As Form For Each frm In Forms If...

Dim frm As Form

For Each frm In Forms
If frm.Name <> "Form1" Then
'Form1 is not active
Else
'Form1 is active
End If
Forum: Database and Reporting 05-02-2003, 01:55 PM
Replies: 3
Views: 394
Posted By Memnoch1207
'Declare the variables Dim conn As...

'Declare the variables
Dim conn As ADODB.Connection
Dim strSql As String

'Assign the connection values
conn.Open ="Driver={Microsoft Access Driver (*.mdb)};" & _
...
Forum: General 05-01-2003, 02:05 PM
Replies: 8
Views: 523
Posted By Memnoch1207
How are you specifying you optional parameter? ...

How are you specifying you optional parameter?
if you set the optional parameter to NULL, then if the parameter is passed it will have a value.


Function myFunction(strText, intNumber=NULL)
...
Forum: General 04-30-2003, 08:14 PM
Replies: 2
Views: 313
Posted By Memnoch1207
use the FileSystemObject 'set a reference...

use the FileSystemObject


'set a reference to the Microsoft Scripting Runtime library

Dim fso As New FileSystemObject

If Not fso.FolderExists(App.Path & "\database")Then
...
Forum: Database and Reporting 04-30-2003, 10:29 AM
Replies: 10
Views: 402
Posted By Memnoch1207
There might be a way to do it, I have never done...

There might be a way to do it, I have never done it this way but you could try.


Dim conn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim field As String

set conn = 'your...
Forum: Database and Reporting 04-30-2003, 10:16 AM
Replies: 3
Views: 844
Posted By Memnoch1207
You could try Data...

You could try

Data Source=DESDB509\TRANSACT_DEVELOP
Forum: Database and Reporting 04-30-2003, 10:08 AM
Replies: 8
Views: 365
Posted By Memnoch1207
Do you know the path to the database? (as far as...

Do you know the path to the database? (as far as what drive it is on, on the remote server?) do you know the name of the database? is the database password protected?
Forum: Database and Reporting 04-30-2003, 10:02 AM
Replies: 2
Views: 312
Posted By Memnoch1207
You can also use the IsNumeric Function to check...

You can also use the IsNumeric Function to check if it is a number or not.


if(isNumeric(txtName.Text) = True) then '
MsgBox "Name cannot be numbers"
end if
Showing results 1 to 25 of 321

 
Forum Jump
Advertisement:



Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe