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: *

  • Users: sfunk
  • Order by date
  1. sfunk

    How do I set ASP.NET to 2 by default when a new site is created?

    Hi, We have a script that automatically provisions new web sites in IIS. We have both ASP.NET 1.1 and ASP.NET 2.0 installed. Currently when a new site is created in inherits ASP.NET 1.1 by default and our CMS package for our clients requires ASP.NET 2.0. In IIS I have Right-clicked on the...
  2. sfunk

    MSHFlexGrid populating checkboxes

    Thank you for responding. I am very new to programming. Could you give that example in the context of my original example. Such as. What I have happening is when a row in the grid is clicked it populates textboxes and I need to do the same for chkboxes. so a check box that I have is coming...
  3. sfunk

    MSHFlexGrid populating checkboxes

    Response to CoCo86 In the database I believe I have it as True/False not 1/0. I can change that easy enough. Could you show an example? Response to johnwm Could you show a couple of examples by changing the code that I originally posted? Thank you both for your help Sincerely, Steve...
  4. sfunk

    MSHFlexGrid populating checkboxes

    Hello, On the MSHFlexGrid Click I am trying to populate text boxes and checkboxes. I figured out how to put text into a text box but not how to set the value of a checkbox. Here is the code: Private Sub MSHFlexGrid1_Click() With MSHFlexGrid1 .Col = 0 txtJobID.Text =...
  5. sfunk

    need Grid to update adodc

    Hello, I have a contact manager program that I am writing. I am using the adodc linked to text boxes to show the current record. Right now to scroll through the records is a matter of clicking on the directional arrows of the adodc. I would like to put a list like MSHFLexGrid (or something)...
  6. sfunk

    ADODB .AddNew error

    This value is null during this operation. Later it is add through an UPDATE. Thanks. Steve (sorry about the duplicate posting, my keyboard seems to be possessed this morning) Sincerely, Steve Funk
  7. sfunk

    ADODB .AddNew error

    Hello, I am getting an error when I am trying to add a record through adodb .addnew. The error is: Run-time error '-2147217887(80040e21) Multiple-step operation generated errors. Check each status value. When I hit debug it highlights the line: .Fields!OpenDate = txtOpenDate(you will see it...
  8. sfunk

    Insert a Running total or a summary on a formula field that

    Hello, I am having trouble Inserting a Running total or a summary on a field that should be a numerical value. When I right click on the formula field the "Insert Summary" is not enabled. I have verified that the data in the formula is numerical, I have also used ToNumber() on the...
  9. sfunk

    CDONTs help

    Does anyone use CDONTs? Sincerely, Steve Funk
  10. sfunk

    CDONTs help

    Hello, I am trying to get CDONTs to work and I am having trouble. I have tried with installing MS IIS SMTP Service and without. With the SMTP Service installed the messages just go to the Inetpub\mailroot\queue directory and sit. Does anyone have any suggestions? Sincerely, Steve Funk
  11. sfunk

    using a dll from another dll

    Have you created a working piece of code that creates a zip file in VB? This is way over my head!!!! Has anyone been able to create zips in VB without 3rd party dlls? Sincerely, Steve
  12. sfunk

    Dim a variable so it's available to the whole Class

    Hello, I would like to Dim a variable so it is available to the whole Class not just a Function. Steve
  13. sfunk

    using a dll from another dll

    Hello, I am developing a dll that will be used by other people. One of the features I would like is to provide a backup of an Access .mdb file. When I copy the file to another directory I would like to zip the file as well. I know of some 3rd party dlls that will zip and unzip files. If I use...
  14. sfunk

    Setting a property in a class at runtime

    Hi John, Thank you for responding. I have two items. I built a ActiveX dll. And I have my application that is using the dll. When I instantiate the object in the application and Use the Control statement below in the application, it works great. If strPath = "" Then...
  15. sfunk

    Setting a property in a class at runtime

    Hello, I have written a dll it has a Property called Status. I used the Class Builder addin. When I Let the Property from a form in my application it works fine - I can Get it from my Form just fine. When I try to Let the Property from within a Public Function in the dll I cannot Get it from my...
  16. sfunk

    Run-time error 91

    Hello I wrote a component and this is the code that I am using to access the component. I get this error Run-time error '91' object variable or With block not set It then highlights the line in red Private Sub Command1_Click() Dim objCRJet As JetCompactRepair.CompactRepair Dim...
  17. sfunk

    Access Compact and Repair from VB

    Hello, Also, what would the correct way to Dim the object in CajunCenturion's solution. Dim JRObj As ... Thanks, Steve
  18. sfunk

    Access Compact and Repair from VB

    Thank you. Both approaches sound good. Since I'm not sure which route will work best im my app. Thank you both. about chadt's response. When you say open the db through vb do you mean; make a connection and then you ado or something to use the SendKeys command.
  19. sfunk

    Access Compact and Repair from VB

    Hello, Can someone help me with a way for a user of my app to Compact and Repair a Access2000 db. I would like to provide a command button that will do this. My experience level is limited so don't assume I may know obvious things. Sincerely, steve
  20. sfunk

    SMTP Server

    Thomas, You mention that you need the SMTP service set up correctly. Could you explain the steps to set it up correctly? I assume that you mean MS SMTP Service in IIS? What if the server that the app is on has a 3rd party email server app running? Sincerely, Steve

Part and Inventory Search

Back
Top