Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tqeonline

  1. tqeonline

    Gridview with Sub Grids

    How? Sorry for my ignorance, i'm not even sure what to Google on this. - Matt "If I must boast, I will boast of the things that show my weakness
  2. tqeonline

    Gridview with Sub Grids

    Is there a way to remove the Toggle or +/- options and just default it to expanded? - Matt "If I must boast, I will boast of the things that show my weakness
  3. tqeonline

    Translate Javascript into CSS

    Is it possible to take the effect of this Javascript and have it directly in the CSS instead? <script type="text/javascript"> $("[src*=plus]").live("click", function () { $(this).closest("tr").after("<tr><td></td><td colspan = '999'>" + $(this).next().html() +...
  4. tqeonline

    Gridview with Sub Grids

    Hey Everyone! I'm building a Sales Order page that has three layers to each sales order: [ol 1] Customer -> Order Detail (1 to many orders)(status, date, tracking number) -> -> Items (1 to many items)(Product, color, length, quantity) [/ol] I found a simple example to follow that shows how to...
  5. tqeonline

    Outlook 2013 - Auto Create Appointments a week away

    Ok! Here is a working version. On Application_Startup it is called, it stores the last run date in Settings and will only run if dates are different, it isn't random (yet) it just takes the earliest available slot. Future Fixes: - Catch up missed days - Random slot in the day - Integration with...
  6. tqeonline

    Outlook 2013 - Auto Create Appointments a week away

    I have made some progress from additional searching. The below will get me the next available 30 minute window... getting closer [smile] Sub GetFreeBusy() Dim oCurrentUser As ExchangeUser Dim FreeBusy As String Dim BusySlot As Long Dim DateBusySlot As Date Dim i As Long Const SlotLength...
  7. tqeonline

    Outlook 2013 - Auto Create Appointments a week away

    I have that today and I've noticed that I'm constantly shuffling it around to make higher priority meetings. Ideally I'd set this thing to be a day/two beforehand and just let it do it's magic - additionally having it do a random time makes it less monotonous for me on a day-to-day basis. -...
  8. tqeonline

    Outlook 2013 - Auto Create Appointments a week away

    I've spent some time looking around the forums and haven't found what I'm looking for. Figured I'd post here to see if anyone has some insight. I want to get out of the "Email = Work" habit and effectively schedule my time each day/week to do email. What i'd like to do is have a script that...
  9. tqeonline

    .OrderByDescending().ToList() - Where Order by is a Date that might be Null

    That was it! Thanks Moregelen! The below is the code for sorting by date where the upcoming items are at the top - and if there is no due date they are put at the top: .OrderBy(x=> x.due != null ? DateTime.Parse(x.due) : DateTime.MinValue).ToList(); Change Datetime.MinValue to...
  10. tqeonline

    .OrderByDescending().ToList() - Where Order by is a Date that might be Null

    Hey guys! I hope all is well. I've been working on my first Windows Phone 8 app in my spare time. It is basically a Task/Todo app that consists of Task Lists that contain multiple Tasks. I can sort the Task Lists off the title and that is no issue, the issue comes when I want to sort the Tasks...
  11. tqeonline

    RunAs with PassThrough Variables

    Thanks Strong! I knew it was simple. One correction though - Change the "True" to "False" - I have an input box prompting for password and if it is set to True the screen waits on the password, if you set it to false it doesn't wait and goes ahead and does the Send Keys. Final version...
  12. tqeonline

    RunAs with PassThrough Variables

    Hey Guys - I hope this is an easy one, I couldn't find much searching. I'm trying to run a Batch file via RunAs. That part works fine. The issue comes whenI try to add some variables (Start Date and End Date). It doesn't like them, won't even prompt me for a password. Is there a way I can fix...
  13. tqeonline

    SQL Insert Statement Error / String Limitation

    Hey Guys! I have 160k rows I have to do formatting on and then dump into a SQL DB. I have all the variables declared correctly but it seems that my String is being limited. strSQL = "INSERT INTO [dbo].[MATStracingVer2v0]...
  14. tqeonline

    Iterate all Subfolders and write Path to text file

    Perfect. Here is the finished product: Option Explicit Dim strFolderToSearch, intCounter, strTextFile, objFSO, objRootFolder, objFolder, colSubfolders, strOutput, objTextFile strFolderToSearch = "C:\Users\mloflin\Desktop\New folder\" strTextFile = "C:\Users\mloflin\Desktop\text.txt"...
  15. tqeonline

    Iterate all Subfolders and write Path to text file

    I have it appending to a text file. Now I need help on how to iterate through subfolders. Any ideas? Option Explicit Dim strFolderToSearch,strTextFile, objFSO, objRootFolder, objFolder, colSubfolders, strOutput, objTextFile strFolderToSearch = "C:\Users\mloflin\Desktop\New folder\"...

Part and Inventory Search

Back
Top