It's an ASUS X83V-Xq with 4 gigs of RAM, and 2.66 Centrino 2
PCI\VEN-1 1 808DEV-0832SSUBSYS-1 9C71 0438REV-05
PCI\VEN_1 1 80&DEV-0832&SUBSYS-1 9C71 043
PCI\VEN_1 1 a0&DEV-0832&cC_0C001 0
PCI\VEN_1 1 80&DEV...0832&CC_0C00
Here's the Hardware list from the RICOH OHCI Compliant IEEE 1394 Host...
Avast has a ROOT KIT Remover that killed a few nasty infections. Boot Scan set to wipe everything it finds
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
Trying to hook up my laptop to my cable box, using a program from here http://home.comcast.net/~timmmoore/firewire/readme.htm
Problem is that Vista x64 won't allow unsigned drivers to be installed. I don't want to turn that feature off, as I'd have to leave it off.
I'd rather find some other...
Recompile your PROGRAM to use the new DLL. Did you change the version number? That could be the problem...
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
Animation control:
Option Explicit
'Add a component Microsoft Windows Common Controls - 2
Private Sub cmdPlay_Click()
anmAVI.Open "c:\program files\microsoft visual studio\common\" & _
"Graphics\Videos\filemove.avi"
' Play the file indefinitely.
anmAVI.Play
End Sub
Private Sub...
Here. Same principle for any Office app...
This opens excel without showing it.
Option Explicit
Public xlAppTemp As Excel.Application
Public xlWorkBook As Excel.Workbook
Public xlSheet As Excel.Worksheet
Dim strDate$
Public Sub GenerateReport()
On Error GoTo ErrHandler
' Creating...
Look up recursive and you'll find many examples. Search for The Scripting Guys, for their free tool http://www.microsoft.com/technet/scriptcenter/default.mspx
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
Classes are great. Create a PERSON class, and many apps can use it. you can modify the PERSON class to add to it, and even more people can use it.
When a method changes, you can change the PERSON class, and it will be fixed automatically everywhere else.
-David
2006, 2007 & 2008 Microsoft...
try this
If Dir( strsfxcllogsrc ) <> "" Then
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
Access 2007 includes the Crystal Reports designer and you can distribute the runtime & .rpt files.
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
VB 6.0 will be supported thru 2023. Many people have requested better Vista compatibility. VB6 runs on all the current* systems, which will be around for a while.
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
Might need Terminal Server for that guy. Install Arcview on the server (if they let you)
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
You can use this, which is free. You can print from VB
http://sourceforge.net/projects/pdfcreator/
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
As long as there is a modem in the computer, and you know youre access #'s and credentials, then she can share your account when you aren't online. she won't like the 1/10th speed. Dialup is 10% at best
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified...
Here's the first part
Public Structure BITMAPINFO
Public Header As BITMAPINFOHEADER
Public Bits() As Integer '(Colors)
End Structure
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
Goback is a Symantec product. It should give you an option to start without goback. Format the drive under linux before you install
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
Use Split() to seperate on the spaces between words, and always make a new line if the wordlength is bigger then linelength.
-David
2006, 2007 & 2008 Microsoft Most Valuable Professional (VB)
2006 Dell Certified System Professional (CSP)
One way
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim str As String = "david"
Dim l As String = UCase(str.Substring(0, 1))
MsgBox(l + str.Substring(1))
End Sub
End Class
-David...
You want to use Late Binding:
<code>
Option Explicit
' These are both examples of Late Binding
Public Sub RunAccessMacro(strDB As String, strMacro As String)
'================================================================
'for late binding declare it As Object and use CreateObject() function...
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.