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 SkipVought 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. tpremore

    windows native authenication and Excel/VBA

    I have set up windows native authenication for Oracle on my machine. I can log into SQLPlus by simply typing "SQLPlus /" and it will use my windows credentials to log me in. I would like to log in this way for an excel database query but I can't get it to work. Just putting in "/" for the...
  2. tpremore

    .NET ticks to Oracle date

    Awesome, thanks Chris. It doesn't seem to work perfectly for all times from the year 0001 to modern times, but for everything back at least as far as 1595 it's only off by 2 days. And it's exactly 2 days, so I just start with Jan 3 0001 and I'm happy. It's probably some crazy Gregorian/Julian...
  3. tpremore

    .NET ticks to Oracle date

    I have a number that represents the value you get when you look at a .NET System.DateTime .Ticks property. This number is 633325517040000000. The problem is that I have this in an oracle table and I want to get a human readable date from it using PL SQL. I no longer have access to the handy...
  4. tpremore

    Get Rid Of Task List for GOOD?

    cappmgr, Did this actually work for you? Build errors is already what I had for my selection. Try building something that has compile errors. I bet the task list pops back up. Infernal thing. If not, you have another setting different from mine that we must find! :)
  5. tpremore

    Get Rid Of Task List for GOOD?

    bert, Ok, ok, I can see that conclusion, but no, it doesn't solve the problem. It automatically pops back up every time a build is done an there are errors or warnings or something it wants to tell you about - EVEN if you "X" it.
  6. tpremore

    Get Rid Of Task List for GOOD?

    Ok hot shots: REAL easy one for you... ready? I want to *completely* turn off the task list window in Visual Studio. I don't care if I EVER see that thing again. How do I do it. ... heh, hehe - Not as easy as you thought, huh? I'll be at tpremore@ideorlando.org if you can crack this...
  7. tpremore

    How Do I Serialize a Dataset of custom objects?

    What I'm trying to do is serialize and deserialize a dataset which contains table of "serialItem" objects that I have defined as serializable. When I look at the contents of the table in the debugger before writing it clearly contains SerializationTest.Form1.serialItem objects, but then looking...
  8. tpremore

    DataSet Serialization problem

    What I'm trying to do is serialize and deserialize a dataset which contains table of "serialItem" objects that I have defined as serializable. When I look at the contents of the table before writing it clearly contains SerializationTest.Form1.serialItem objects, but then looking at the...
  9. tpremore

    Dialog Box locked out when in while loop

    Is there any way for my dialog box based program to watch for kestrokes, button clicks, etc. while I am looping through code in a while loop? I would like to allow the user a way to "escape" from the loop while waiting for it to termintate. I am looking for something simpler than...
  10. tpremore

    SetTimer not getting called every 20ms

    I have a SetTimer call: SetTimer(1, 20, NULL); And a handler: void Xxx::OnTimer(UINT nIDEvent) { ... if(nIDEvent == 1) { ... } } But the Handler code is not being called every 20ms as requested. Is this dependent on the Machine on which it runs, or the...
  11. tpremore

    Serial Comm Problem going from 2000 to NT

    I wrote a simple tool that uses the CreateFile, ReadFile and WriteFile functions. The tool is simply used to monitor a serial port for input and display it in a text box. It can also Send bytes entered by the user to the serial port. If I run two instances of my tool each set for a different...
  12. tpremore

    How to hide a label?

    If I have a button, I can hide it with code using something like: GetDlgItem(IDC_BUTTON10)->ShowWindow(FALSE); Since a static text item does not have unique ID, I cannot hide it the same way. How *can* I hide it?
  13. tpremore

    Tool Tips

    How can I add a tool tip to a button on a dialog box? (you know, the little popup text when the mouse hovers over the button) It seems like this should be pretty easy to do, but I'm at a loss. Any help is appreciated
  14. tpremore

    Array of CStrings

    I am having a problem with my array of CString objects: CString Master_funcs[2000]; I get an Access Violation when trying to execute functions on the elements. Is there some way that I need to allocate memory for the array?
  15. tpremore

    Linked Table Location

    Is there any way to link to a table with a relative path? For example, when I have a link from c:\mydir\main.mdb to tables in c:\mydir\data.mdb the main database will not work properly unless data.mdb is in c:\mydir. What if I wanted to move both mdb files to c:\thisOtherDir? I would have to...
  16. tpremore

    PeekNamedPipe

    Any idea what may be causing my problem? I can read data from the serial port just fine using ReadFile, but PeekNamedPipe returns no data.
  17. tpremore

    How to do encryption...

    Is there a good "built-in" way to do file encryption with MS Visual C++? What is the best way to do this? My goal is to create a simple user login screen for my application, and I want to encrypt the passwords.
  18. tpremore

    Access Database VIEWER?

    Excellent - that is exactly what I was looking for! Now how about this - how can you put your own title in the blue title bar at the very top of the window (using the runtime application)?
  19. tpremore

    Max number of records?

    Is there a maximum number of records a table in Access can have? How about a maximum for the whole database? I would think if there even is, that it would be VERY large, but a customer for whom this database is being built will want to know upper bounds, if any.
  20. tpremore

    Access Database VIEWER?

    Is there any "version" of access, or perhaps another application that serves to let people use a finished database, but not have access to all of the menus and features of Access? My goal is for my database forms to be the only interface for the use of my databse - I don't want a...

Part and Inventory Search

Back
Top