Microsoft
Software
Hardware
Network
Question : work with a file name that changes based on that days date
I need help with visual basic code for the following:
The file name is in this format: rmr121709.lmc
I need to select the file in a directory that matches that days date, then rename the file to oldfile.txt, run a script on the file then rename the file back to rmr & todays date & .lmc.
Answer : work with a file name that changes based on that days date
Dim fileName As String = "rmr" & DateTime.Today.ToString("M
Mddyy") & ".lmc"
File.Delete("oldfile.txt")
File.Move(fileName, "oldfile.txt")
' ... run script here
File.Move("oldfile.txt", fileName)
Random Solutions
Set Font For Workbook or Worksheet Through VBA
adding records to access table
Server 2003 RDP connection fails.
Call NetMessageBufferSend function from vb.net
String or binary data would be truncated.
connection has timed out ... iis setting?
event 2436
Toggle Buttons!!!
¿Why is Access 2007 not respecting the Windows Date format setting?
Undefined Functions in Access 2003 MDE