Jump to content

tc8224

Member
  • Posts

    14
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About tc8224

tc8224's Achievements

0

Reputation

  1. ok thanks for the information just making sure before I wasted my time doin it
  2. even with it being slipstreamed it won't recognize it as a sp2 cd and not a sp2 cd key on install that is?
  3. Hey guys I have a question, if i have a xp pro sp 1 cd with a university key, and slipstram sp2 in it will it recognize it as sp1 or sp 2 and will the key not allow it to install cause its not a sp2 cd key, and also will it popup with that stupid wga? thanks for help in this matter. tc8224
  4. This is really making me mad. What I'm trying to do is, when you click on "Emergency Appointments" and click "NO" on the Question Box, you can click the combo boxes, and click an option button, It will then open the "Appointment".xls file, and then insert the info from this sheet, and it will select the correct worksheet which is determined from the option buttons. And then if you add new data from the "OldAppointments" form, it will add the data to the worksheets, and not open a new copy of the file. Here is the code........ Private Sub cmdSubmit_Click() Dim appexcel As Excel.Application Dim xlBook As Excel.Workbook Dim xlSheet As Excel.Worksheet Dim rstRunInfo As New ADODB.Recordset Dim rstRunInfo2 As New ADODB.Recordset Dim strDate As Date Dim strCustomer As String Dim strLast As String Dim strDesc As String Dim strPet As String Dim strType As String Dim introwcounter As Integer Dim WorkBookFilePath As String WorkBookFilePath = "C:\Documents and Settings\tc\Desktop\Final Project\Appointment.xls" Set appexcel = New Excel.Application Set xlBook = Workbooks.Open(WorkBookFilePath) 'appExcel.Workbooks.Add 'Set xlBook = appExcel.Workbooks(1) 'Set xlSheet = xlBook.Worksheets(1) Set xlSheet = xlBook.Sheets("Tuesday") Set cmbDays = ("xlSheet") 'Worksheets("Tuesday").Activate Do introwcounter = introwcounter + 1 Loop Until Cells(introwcounter, 1) = "" 'Cells(introwcounter, 1) = cmbCustomerName 'Cells(introwcounter, 3) = cmbName 'Cells(introwcounter, 4) = cmbType 'Cells(introwcounter, 6) = txtDescription 'With xlSheet.Rows(1) ' .Cells(1).Value = "Customer Name" ' .Cells(3).Value = "Pet Name" '.Cells(4).Value = "Pet Type" ' .Cells(6).Value = "Description" 'End With rstRunInfo.Open "Customers", CurrentProject.Connection, adOpenStatic With rstRunInfo Do While (Not .EOF) strCustomer = .Fields("Customer Name") With xlSheet.Rows(introwcounter) cmbCustomerName.SetFocus .Cells(6, 1).Value = cmbCustomerName.Text End With .MoveNext Loop End With rstRunInfo2.Open "Pets", CurrentProject.Connection, adOpenStatic With rstRunInfo2 Do While (Not .EOF) cmbName = .Fields("Pet Name") cmbType = .Fields("Pet Type") With xlSheet.Rows(introwcounter) .Cells(6, 3).Value = cmbName .Cells(6, 4).Value = cmbType .Cells(6, 6).Value = txtDescription End With .MoveNext Loop End With With xlSheet.Rows(1) .Font.Bold = True .Font.Size = 14 End With Columns("A:H").AutoFit MsgBox "Your Appointment Has Been Recorded!", vbInformation, "Appointment Recorded" cmbCustomerName = "" cmbName = "" cmbType = "" txtDescription = "" appexcel.Visible = True End Sub
  5. i mean i have a leagal copy. but i mean if i do an ui of it it would fix the date as it would be current on that august date, but i mean sometimes a reformat isn't needed just a restore so i mean thats all im trying to do
  6. which guide would that be could you post a link please thanks alot.....
  7. Hey guys i have a general question about norton ghost in conjunction with norton internet security. If i make a restore image of a machine on say may 12 th, right after i install norotn internet security so that the sursbription date is still one year but i have to restore the computer on say august 12 would norton still think that its may 12th and have the longer subscription date or would it know that its august 12th? Any help in this area would be great thanks alot guys.
  8. I have to use what is listed as I am making it for a company so i have to put on what they want on it
  9. Everytime I edit the msi using orca and it install its keeps coming back with errors on the installs "ROxio 6".. or on "Roxio 5" it will install and reboot and when it comes back up it keeps saying "##new string #69" instead of a program name IE Roxio easy cd creator or disc copy whatever the case maybe it is replaced by those strings and won't run the programs....any ideas as to what im doing wrong and help would be appericated thanks alot.
  10. I think i said that i've read your post on how to install power dvd 6 silently but didn't really understand it all to well.....but none the less I have finally got it to install silently...but it still says trial version when you open it up until you put the key in to upgrade to the deluxe edition....so is there a way to just make it enter that key silently IE a reg file although im not sure what it would help since I thought the key was already put in in the iss file that is in the compressed install file if im not correct then please let me know thanks for all your help. Great job on board btw Asta.
  11. code below is for Easy cd creator 5 platinum it won't install this way or using setup.exe ;!@Install@!UTF-8! RunProgram="StartX.exe /WAIT \"msiexec /i ECDC5.msi /qb-!\"" ;!@InstallEnd@! This is for PowerDVD which also won't install these are the last two things i need to complete my UA WIN XP CD ;!@Install@!UTF-8! RunProgram="setup.exe –s -f1\"%systemdrive%\install\powerdvd\setup.iss\" /f ;!@InstallEnd@! this won't work either....and i've read the post on power dvd 6 but i don't have any keys for any plugins so i guess i need to find out where/what those are and get them... any help would be greatly appericated.
  12. cmdow @ /HID @echo off SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Applications" /f REG ADD %KEY%\010 /VE /D "Microsoft FrameWork" /f REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\dotnetfx.exe /q /c:\"install /q\"" /f REG ADD %KEY%\011 /VE /D "Microsoft Office Professional 2003" /f REG ADD %KEY%\011 /V 1 /D "%systemdrive%\install\office2003.exe TRANSFORMS=Unattended.MST /qb- REG ADD %KEY%\022 /VE /D "Norton Internet Security 2005" /f REG ADD %KEY%\022 /V 1 /D "%systemdrive%\install\symlcrst.exe" /f REG ADD %KEY%\022 /V 2 /D "REGEDIT /S "%systemdrive%\install\nis2005serial.reg" /f REG ADD %KEY%\022 /V 3 /D "%systemdrive%\install\NIS2005.exe" /f REG ADD %KEY%\033 /VE /D "PowerDVD 5" /f REG ADD %KEY%\033 /V 1 /D "%systemdrive%\install\PowerDVD\setup.exe -s -f2%systemdrive%\PowerDVD.log REG ADD %KEY%\044 /VE /D "Adobe Acrobat Reader 7" /f REG ADD %KEY%\044 /V 1 /D "%systemdrive%\install\acroread7s.exe" /f REG ADD %KEY%\055 /VE /D "Roxio Easy CD Creator 5 Platinum" /f REG ADD %KEY%\055 /V 1 /D "%systemdrive%\install\setup.exe /s /v/qn /SN=*-*****-*****-***** /WRITE_SN" /f REG ADD %KEY%\108 /VE /D "Cleaning Up and Rebooting" /f REG ADD %KEY%\108 /V 1 /D "%systemdrive%\install\cleanup.cmd" /f Here is my runonce i just started looking at how to make your own .7z install files for it can anyone tell me the correct config.txt files for both of these programs as none of these work for me....I've looked at the other threads I just don't understand them obvisouly or else I wouldn't have created this one....any help is much appericated.
  13. Sorry about the shouting didn't reall even think about it.......i've done the PDF file...several times but is there anything wrong in the code?
  14. Sorry about the caps new here didn't realize that....just trying to get this to work. cmdow @ /HID @echo off SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Applications" /f REG ADD %KEY%\010 /VE /D "Microsoft FrameWork" /f REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\dotnetfx.exe" /f REG ADD %KEY%\011 /VE /D "Microsoft Office Professional 2003" /f REG ADD %KEY%\011 /V 1 /D "%systemdrive%\install\office.exe TRANSFORMS=%systemdrive%\install\Unattended.MST /qb" /f REG ADD %KEY%\022 /VE /D "Norton Internet Security 2005" /f REG ADD %KEY%\022 /V 1 /D "REGEDIT /S "%systemdrive%\install\nis2005serial.reg" /f REG ADD %KEY%\022 /V 2 /D "%systemdrive%\install\symlcrst.exe" /f REG ADD %KEY%\022 /V 3 /D "%systemdrive%\install\NIS2005.exe" /f REG ADD %KEY%\033 /VE /D "Nero 6 Burning Rom" /f REG ADD %KEY%\033 /V 1 /D "%systemdrive%\install\nero6316.exe /SILENT /NOREBOOT /SN=xxxx-xxxx-xxx-xxxx-xxxx /WRITE_SN REG ADD %KEY%\044 /VE /D "Yahoo Messenger" /f REG ADD %KEY%\044 /V 1 /D "%systemdrive%\install\messenger.exe /S" /f REG ADD %KEY%\055 /VE /D "WinRar 3.30" /f REG ADD %KEY%\055 /V 1 /D "%systemdrive%\install\wrar330.exe /S" /f REG ADD %KEY%\066 /VE /D "Win Amp Pro 5" /f REG ADD %KEY%\066 /V 1 /D "REGEDIT /S %systemdrive%\Install\Winamp.reg" /f REG ADD %KEY%\066 /V 2 /D "%systemdrive%\install\winamp506_pro.exe /S" /f REG ADD %KEY%\077 /VE /D "VLC Media Player" /f REG ADD %KEY%\077 /V 1 /D "%systemdrive%\install\vlc-0.7.2-win32.exe /S" /f REG ADD %KEY%\108 /VE /D "Cleaning Up and Rebooting" /f REG ADD %KEY%\108 /V 1 /D "%systemdrive%\install\cleanup.cmd" /f
×
×
  • Create New...