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 TouchToneTommy 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
  • Content: Threads
  • 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

    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 =...
  3. 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)...
  4. 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...
  5. 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...
  6. 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
  7. 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
  8. 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...
  9. 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...
  10. 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...
  11. 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
  12. sfunk

    CDONTs general questions

    Hello, I have a couple of general CDONTs questions. Does it act as an SMTP server or does it act like a email client sending email to its outgoing SMTP server? Does any SMTP service need to be installed on the server? What if email server software is using port 25 does this interfere with...
  13. sfunk

    Summarizing in the main report of a field in a subreport

    Hello, I have a report that has a subreport in the Detail section. I need to summarize a field from the subreport in the main report. Is this possible? If so, can you get me pointed in the correct direction? Sincerely, Steve
  14. sfunk

    software protection componetent

    Hello, Does anyone know of a software protection component (shareware licensing) for VB6 that is free? AND Are there any suggestions on creating one? I am considering writing a simple component that can offer a little protection. I am very unconcerned with whether someone can crack it or...
  15. sfunk

    Automatically Call a sub when it is a specific hour of the day

    Hello, I need to be able to call a Sub during a specific hour of the day withOUT user intervention. It should be called when the hour is equal to (a number). Such as 4 for 4 a.m. It's a timer but the frequency is every 24 hours on what ever hour of the day a variable specifies. I would like to...
  16. sfunk

    db connection and select statement

    Hello, Using Microsoft ActiveX Data Objects 2.5 Library. In a Sub I would like to: 1. Open a db connection. 2. Select statement: "Select email_address From Email_Notification" 3. Loop through and put each email address into a single string separated by a comma and a space. Assign...
  17. sfunk

    Hello, I need help writing a sim

    Hello, I need help writing a simple Sub or a Function to perform an Insert any time it is called. When I call the Sub or Function I want to pass it a number (ie. 398594) that I have in a variable called numCount. In the Sub or Fun, I would like to set the database connection, perform the...
  18. sfunk

    simple Insert statement

    Hello, I am writing a small app in VB6sp5. I am using an Access2000 database. I am using the Microsoft ADO Data Control (SP4)(OLEDB). This Sub will reside in a Module and be called from a Form_Load Sub so I assume this all needs to be done programatically. This is where my lack of skill comes...
  19. sfunk

    How to: LEFT JOIN in UltraDev

    Hello. I am trying to do a JOIN in UltraDev and it is giving me a syntax error. It is using Access as the database. I have verified that for Access this is the syntax that I should use. But it is not working. Can anyone help out? SELECT * FROM profile, Favorites WHERE profile LEFT JOIN...
  20. sfunk

    Using more available RAM

    Hello, Pardon this simplistic request. Windows2000 Server / Oracle 8i I have a server that has nearly 2GB of available RAM. Right now Oracle is only using about 512MB. Is there a simple way to allocate more RAM to Oracle? I understand there are a million ways to improve performance that is...

Part and Inventory Search

Back
Top