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

    Run .NET from CD

    Nothing is wrong with vb6 I just already upgraded it to .net and there is lots of new code in it that would have to be rewritten in vb6 again it looks like that is what I will have to do just been putting it off as long as possible... :(
  2. megasuperman

    Run .NET from CD

    I cant install the .net framework.... it is a menu for a tech disk installing framework wont work it worked fine in vb6 but I dont want to have to go back to vb6
  3. megasuperman

    Run .NET from CD

    I need to run a menu that I created in .NET from a CD is it possible to put the client files on the CD without requiring them to be installed as could be done in Visual Basic 6 If so what files do I need to put on the CD I know mscoree.dll is required but others are as well Any help would be...
  4. megasuperman

    Email without any user action

    the problem was in the module I just put it in the form load remove all other form info besides status and works great thanx for the suggestions the firewall at the 1 location is a problem
  5. megasuperman

    Email without any user action

    I am trying to write a program that will send an e-mail at a certain time of the day every day to the same person (I am going to use windows scheduler to call the program at a certain time of the day so the program is not resident at all times just counting) I will be installing this on several...
  6. megasuperman

    Adding the current date to a hidden field

    I did it in VBScript instead
  7. megasuperman

    Adding to an existing number in a record

    thanx I got it I had the two recordsets but couldnt get them to add to eachother figured it out and had to add parseFloat(QtyI.value) + parseFloat(QTYS.value) because it was adding itself to the end such as 3 + 3 = 33
  8. megasuperman

    adding two textboxes togther

    got it working used parseFloat(QtyI.value) + parseFloat(QTYS.value)
  9. megasuperman

    Adding the current date to a hidden field

    got it working had to use <SCRIPT LANGUAGE=VBScript RUNAT=&quot;Server&quot;> OrderDate.value = Date() </SCRIPT>
  10. megasuperman

    Adding the current date to a hidden field

    got it working
  11. megasuperman

    Current Date

    thanx all I did use date I just had to use it different than I was trying at first got frustrated and posted thanx it was having a problem because it was a hidden field so I was getting type mismatch and thought I was doing something wrong I just had to define that the code was running at...
  12. megasuperman

    Current Date

    I need to be able to add the current date to a record in an SQL database I have a textbox that currently allows user input of the date but I need it automated so no one types in the wrong date (accidental or intentional) So I have a Text Box that I want to update with the current date in...
  13. megasuperman

    Adding the current date to a hidden field

    I need to add the Current date in Short Date format to a hidden field therefore Date() New Date() and such will not work I get thiis Sun Aug 26 15:37:04 2001 08-26-2001 0r 8-26-001 or 8/26/01 or whatever THANX
  14. megasuperman

    Adding the current date to a hidden field

    ohh if I enter DateBox Value Date() I get Sun Aug 26 13:41:17 2001 as the value I need it in the format 08-26-2001
  15. megasuperman

    Adding the current date to a hidden field

    I need to show when the record was updated or added... so I need to use date() or something similiar and everything I have tried gives me an error.. I have tried using form manager and like DateBox Value Date() and tons of others If any one has ANY ideas please help anything I can try...
  16. megasuperman

    Interdev &amp; PWS

    The PWS can be identified by two names when running on your machine localhost or Your Machine name (i.e. menezes or whatever your computer is called)
  17. megasuperman

    adding two textboxes togther

    How can you add two textboxes together I am trying to add QtyI to the Current Value of QTYS I am Currently have set in the Form Manager under Actions Preformed Before Transition Object Memeber Value QTYS Value Request(&quot;QTYS&quot;) + Request(&quot;QtyI&quot;) the...
  18. megasuperman

    Adding to an existing number in a record

    I think I need to be a little more clear, I am using an SQL database I have two Tables Inventory and STOCK Inventory is a large Table with all the inventory ever ordered and the individual order number when received I need to update STOCK that has 3 Fields PartNumber RegionId Qty all 3...
  19. megasuperman

    InterDev & Windows 2000 Professional

    I have 2000 server running VI and I cannot debug either all you got to do is open a browser and type in http://localhost/asppage.asp it has to be done that way anyway to display asp pages the server has to serve it to you
  20. megasuperman

    Using parameters from one page to populate recordset object in another

    Hope you have it answered by now but if you dont, I ran into that same problem with that, you have to click sql statement set it to what you want like SELECT * from Custlist where custnum = ? then under parametes define the value of ? Request.QueryString(&quot;cust_num&quot;)

Part and Inventory Search

Back
Top