Search results for query: *

  1. J

    Question How to run this code?

    I can be a real twit some times. 2 options stored in the database. 1- Clear Panels 2- Fill Panels. Select case the string, do either function dependant on which string found. Sheesh. But. It would be interesting to see if a command, stored and pulled from a database could be executed with in...
  2. J

    Question How to run this code?

    I have a VB2008 application that can run an Exe from a string of data from a database. I use the Process.start(*location*) command. But what if I want to run a line of code with in the same application? For example: "me.panel1.clear" or "Call LoadDocs". I need the line executed on command...
  3. J

    pivot tables

    I am in the process of converting a VB6 program to Dot.net 10. I havre most of the code re-written, creating the excel book and sheets, loading it etc but am hitting a problem with a pivot table. ptCache = ObjExcelB.PivotCaches.Add(XlPivotTableSourceType.xlExternal, arData)...
  4. J

    setsuspendstate?

    I use the setsuspendstate code in one app on one machine and it works. On the new machine? Nope. Any ideas? <code> Private Declare Function SetSuspendState Lib "Powrprof" _ (ByVal Hibernate As Long, ByVal ForceCritical As Long, _ ByVal DisableWakeEvent As Long) As Long </code> <button>...
Back
Top