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

    How to prove my ASP App does not crash server?

    Here is my situation: I wrote a very complex Citizens' Request application in ASP (112 files, as Object Oriented as ASP can be) which was placed on our Intranet. As part of the process the team ran the Microsoft Web Application Stress Tool 1.1 to simulate 300 users performing 1.2M transactions...
  2. Nicholas

    Is there anyway to create popups in a VB

    Your post might be somewhat confusing and hence no replies. I am not certain what your intent for 'pop-up' is; however, here is some advice: The inherent VB controls need not be used for only their intended purposes Here is an example - Assume I wanted a multi-line help file to appear next...
  3. Nicholas

    Decompiler - Is there such a thing???

    Here is the bad news: no. The reason is simple: if the VB code is compiled to native machine language, the VB structure is lost. For VB (version 6) the compiler is C2.exe which is a C compiler modified for Visual Basic. Once the process begins, the VB code is rendered into a C-styled language...
  4. Nicholas

    Using Progress Bar to display total bytes "read"

    I am having programmatic amnesia! I cannot recall how to get the total file size and then diplay total bytes read &quot;so far&quot; using a progress bar.<br> <br> Any suggestions?<br> <br> Thanks much, <p>Nicholas, BofA NetOps<br><a href=mailto: Nick.deLioncourt@BankofAmerica.com>...
  5. Nicholas

    VB and Databases

    Although I am not certain of what you are attempting to do; however, the dates, the database and the application must be involved as one, true? The users enter the dates through your application, the application saves this to a database and thereafter - later - retrieves these dates from the...
  6. Nicholas

    Changing those bland command buttons

    Thank you! More than happy to help. <p>Nicholas, BofA NetOps<br><a href=mailto: Nick.deLioncourt@BankofAmerica.com> Nick.deLioncourt@BankofAmerica.com</a><br><a href= > </a><br>Biologically Tagged as Alpha-Geek #234
  7. Nicholas

    Searching a grid with .findfirst & .findnext

    Here is my issue: I have on my form a textbox and label. The label acts as a button (you'll see) to perform the search on a grid in which each row is a record.<br> <br> (1) I have tried to detect .EOF so that the search might .movefirst and begin from the top again with no success.<br> <br> (2)...
  8. Nicholas

    Changing those bland command buttons

    I have done just that in my application. When I began, I could find no references to this process yet I knew it could be done, so I became a bit creative.<br> <br> You will need (1) an image editor such as Photoshop or Paint Shop Pro and (2) some imagination (grin).<br> <br> Determine what you...
  9. Nicholas

    Question: Open embedded RTF from DB & showing in RichTextBox

    I have created a Jet Db with the Data Type set to OLE Object. I then inserted Wordpad object (RTF).<br> <br> That is the easy part.<br> <br> In the project, I placed a richtextbox control and opened the Db; however, the control will not open the rtf embedded in the Db.<br> <br> I have attempted...
  10. Nicholas

    Aughhh! Opening then Closing Excel in App - Excel remains in memory

    I am at the Villa site in Richmond - are you at the Tempe site?<br> <br> BTW, I really appreciate all the replies I read to my and others' questions. Great knowledge base we have here!<br> <br> <p>Nicholas, Bank of America NetO<br><a href=mailto: > </a><br><a href= > </a><br>
  11. Nicholas

    Info: Interesting product "BitArts Fusion v1"

    I stumbled across this product over the week-end and albeit the price is somewhat expensive, it does perform a function often mentioned. It permits you to compile dependant .dlls and .ocxs in the .exe. I like the idea in terms of avoiding version conflicts.<br> <br> - Interesting<br> <A...
  12. Nicholas

    Aughhh! Opening then Closing Excel in App - Excel remains in memory

    Actually the Excel spreadsheet must remain open for the user; however, if closed &quot;Excel.exe&quot; remains in memory and with each run of this routine, another &quot;Excel.exe&quot; remains until my programme is closed.<br> <br> I resorted to this and it worked well,<br> <br> 1. Created a...
  13. Nicholas

    Aughhh! Opening then Closing Excel in App - Excel remains in memory

    On my form I have a routine Private Sub SendToExcel() in which I have this code:<br> <br> Dim objExcel as Excel.Application<br> Dim objWorkbook As Excel.Workbook<br> Dim objWorkSheet As Excel.Worksheet<br> Dim objRange As Excel.Range<br> <br> I then open Excel as:<br> <br> Set objExcel =...
  14. Nicholas

    Must forms reside in the .exe or can I place then in .dll?

    Possibly; however it would be necessary to prevent users from launching each .exe as a standalone. Folks are naturally curious and will do just that - by encapsulating the form/code in a .dll this is more easily prevented.<br> <br> Calling the .dll and sharing info between forms would be...
  15. Nicholas

    Must forms reside in the .exe or can I place then in .dll?

    I have been working on a programme in which the main .exe now contains 21 forms! Without creating a 50-form executable, can forms be designed within a .dll and called from the main .exe through code.<br> <br> If so, how would the form be called?<br> <br> Thank you!<br> Nick

Part and Inventory Search

Back
Top