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!

Search results for query: *

  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\"...
  16. tqeonline

    Iterate all Subfolders and write Path to text file

    I have a folder path that I need to iterate through to grab ALL the folders underneath and plot their path This is what I have so far: Option Explicit Dim strFolderToSearch, objFSO, objRootFolder, objFolder, colSubfolders, strOutput strFolderToSearch = "C:\Users\mloflin\Desktop\New folder\"...
  17. tqeonline

    Access 2010 - BoundColumn Not Available - Other Options?

    I hate easy solutions... I searched for a good hour and couldn't find that. - Matt "If I must boast, I will boast of the things that show my weakness
  18. tqeonline

    Access 2010 - BoundColumn Not Available - Other Options?

    Hi All! I am using the Non-Profit Form / Template that comes out of the box with Access. I have copied the Donors table and created a "Rotarians" table to be able to link a Rotarian/Sponsor to the Donors. I then added a combo box on the DonorDetails form that is a dropdown of the ID and FileAs...
  19. tqeonline

    Outlook - Set Flag / Category for Two Business Days from Now

    I have created the basic code to have a macro that will set my follow up as two business days from "now". Sub SetFollowupTo2BusinessDays() Dim sel As Outlook.Selection Set sel = Application.ActiveExplorer.Selection Dim item As Object Dim i As Integer For i = 1 To...
  20. tqeonline

    Can Access Hyperlink Maximize Excel workbook?

    Did you try making Excel default to maximized everytime a file is opened? (As i stated at the beginning?) - Matt "If I must boast, I will boast of the things that show my weakness" - Windows 2003 Server, 98 SE, XP - VB.NET, VSTS 2010, ASP.NET, EXCEL VBA, ACCESS, SQL 2008

Part and Inventory Search

Back
Top