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. CestusGW

    Retrieving listbox items using GetSetting?

    If you're referring to the standard icon in the upper left window of your form, you can only place icon files there (*.ico) and you specify these through the VB Interface (a project setting or form window setting I think) Greg W wolgemga@aecl.ca
  2. CestusGW

    Difficulty with an '&'

    I'm using WinNT 4 SP6 with VB6 SP5, and here was what my .bat file that was generated had: myEx.exe Z:\R&D_Branch\myDirWhen it ran in the console window however it displayed: myEx.exe Z:\R & D_Branch\myDirAnd then it threw an error I solved the problem though by simply enclosing my command...
  3. CestusGW

    Difficulty with an '&'

    This problem is actually coming from a batch file that is written, not the VB application itself (whoops, should've traced the error further first) Greg W wolgemga@aecl.ca
  4. CestusGW

    Getting creation date of all my files

    That would be easy - just have the sPath variable get changed based on the user input. Then do a check - if it has a .??? at then end, it's a file and you just check it - otherwise you would just treat it as a directory and add a "\" character onto the end if needed. Greg W...
  5. CestusGW

    Difficulty with an '&'

    I have a VB 6.0 application which is doing a lot of work with directory structures. Many of these dirs contain the '&' character in them. This character always places spaces to either side of itself when it is read by VB. Is there any escape function for VB (I haven't found one yet!)? Greg W...
  6. CestusGW

    Y2K Difficulty (I know, I'm 3 years too late)

    My OS is NT 4.0 SP6 (which should be Y2k compliant fs!) Greg W wolgemga@aecl.ca
  7. CestusGW

    Y2K Difficulty (I know, I'm 3 years too late)

    When using the File object under VB6, the DateLastModified and DateCreated properties return two digit year values. I've upgraded to SP5 for VB6, but this behaviour still persists. Is there any way I can extract the required 4 digit date from a file? (ie other methods under the FSO or File...
  8. CestusGW

    Running a console app from within the current console

    And in the end I've pulled it off! This is the code which I used (a combination of some of StrongM's solutions) which, in essence, makes a console application (although my version just prints to output atm). Private Const STD_ERROR_HANDLE = -12& Private Const STD_INPUT_HANDLE = -10& Private...
  9. CestusGW

    APSAdmin object not found under ePortfolio admin page

    I'm using CE 8.0, and I'm getting an error under the administration page. Whenever I try and access any pages such as Objects, Folders, Servers, Users etc., I get this error message: Retrieve Error There was an error while retrieving data from the server: Unable to get the admin object for the...
  10. CestusGW

    Running a console app from within the current console

    OK, looking over some of your other threads I can see I'd want to write to the STDOUT pipe which should now be available to me because VB hasn't killed it? What sort of a command would I use to write to the STDOUT pipe from VB? Greg W wolgemga@aecl.ca
  11. CestusGW

    Running a console app from within the current console

    My question now would be how would this change the code I write in VB? Now that this executable is identified as a console app, how do I reference its parent console window? Will VB now have a builtin refernce to the parent console which I can call? Greg W wolgemga@aecl.ca
  12. CestusGW

    Win2k Fax Server No Response from Code

    Have you tried using Debug.Print statements to follow the execution of this method? Another thing to do would be to set watches on the iFaxDoc and iFax objects that notify when a change occurs. That will let you trace the values of the objects and see if they are initializing and being set...
  13. CestusGW

    Running a console app from within the current console

    Whoops, never mind - found some references to this elsewhere ... and have decided to just use a copy of VB.NET on another workstation to build this program. Why on earth doesn't MS provide what would appear to be the most base of functionalities to VB6? You'd think it would be easier to compile...
  14. CestusGW

    Running a console app from within the current console

    I'm currently in the process of trying to make a VB app which runs from the command line. While I've found information on how to create new instances of the console, etc. (which all work quite well, thank you alt255 and others who made posts in the thread Console Applications), I need to use a...
  15. CestusGW

    STOP 0x00000050 Page Fault in Nonpaged Area

    Search the web for any sort of RAM checking utility. Most of them will make a boot disk and will then step through every sector of your RAM, performing basic funcitons. It will take upwards of an hour for even small amounts of RAM (64 megs), but it will check all the avaialable RAM performing...
  16. CestusGW

    Transfer ODBC settings from a ghost image

    Im using WINNT4SP6, and I recently had my computer fail to a non-bootable state. A ghost image was made of my C: drive, and I would like to take all of my old ODBC settings from there and transfer them to my new C:\ drive. Can I use regedit to get at the settings on the ghost image? Greg W...
  17. CestusGW

    Transitions and/or multiple tracks cause black screen

    Also of interesting note: If I use alt+clicking to look through my timeline before I render it, my transitions and videos all display properly. After rendering, I get the problem of black video appearing. Greg W wolgemga@aecl.ca
  18. CestusGW

    Transitions and/or multiple tracks cause black screen

    And to add even more info, the tracks will actually layer properly if and only if they both start at the beginning of the clip - the same is true for the transitions. Greg W wolgemga@aecl.ca
  19. CestusGW

    Transitions and/or multiple tracks cause black screen

    As a further note, the size of the files doesn't matter - I'm working with small clips right now, and a single track 4 second clip worked just fine, while a two track 3 second video didn't. Greg W wolgemga@aecl.ca
  20. CestusGW

    Transitions and/or multiple tracks cause black screen

    I'm using Premiere 6.01 witha Matrox RT2500 capture card on Win2K, with a P4 1.7g and 256 mb RAM. When I'm adding any sort of graphic or video to a timeline, I get a problem where only the first track shows anything, and only until the point where it overlaps with a transition or another track...

Part and Inventory Search

Back
Top