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 Chriss Miller 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: 777axa
  • Content: Threads
  • Order by date
  1. 777axa

    Insert SQL problem (Jamie)

    I don't know what happend to previous thred. Below is what worked for me. Note: I think that the problem was that you named your fields with reserved words like time or date - use prefixes - showTime, showDate In your case [ ] around the names are needed...
  2. 777axa

    Epicor evaluation

    Hi, does anybody know if Epicor provides evaluation version of it's ERP software? Our company has requested evaluation package 2 weeks ago. So far nothing. No calls or CD. They've sent an email though (but no useful information). Is their support this slow too? in the meantime can anybody give...
  3. 777axa

    Grabbing XML and saving it with FSO ?

    I'm using ASP but trying to display data from an XML stream produced by PHP file. If I'm using my PC for displaying data it works fine. If I upload files with javaScript or data Island to a remote server they stop working. XMP output is valid and well formed (I check it). The only way to display...
  4. 777axa

    CSS file with cellspacing property for table ?

    How to create stand-alone CSS file with the properties for the table SIMILAR to cellspacing & cellpadding? Someone recommended margin:0; padding:0; but it doesn't work! I'd like to be able to control cellspacing & cellpadding for all the tables in my project from one place. Thanks
  5. 777axa

    Help file for Delphi components

    I'm VS.NET user. I'm trying help my friend with translation into English of the manual for his software which was created with Delphi and has a number of Delphi components as well as new components. All the support materials are in foreigh language and I need to have at least an English...
  6. 777axa

    Deployment problem & question

    1. I'm trying to deploy a project to a remote server. Locally the project was named "v_66" The folder on a server(virtual directory) where I'm deploying the project is "66" I copied Global.aspx and Global.asax.resx Here is the error: Parser Error Description: An error...
  7. 777axa

    Short date formatting problem

    Here is my function: Public Shared Function NullDisplay(ByVal nDate As Object) Dim nString As String If IsDBNull(nDate) Then nString = "" Else nString = nDate.ToString End If Return String.Format("{0:d}&quot...
  8. 777axa

    Range Validator help for date validation

    Is there a way to set the min and max values in the Range Validator Control's properties using some of the built-in date functions. I want min to be the today's date minus 50 years and max + 5 years. I've tried typing <%=DateTime.Today%> into the properties but it gives an error. Do i need to do...
  9. 777axa

    How to convert int to string inside SQL string?

    Inside SQL string I'm building a path to the image file named by EmployeeID # *************************************** strSQL = &quot;SELECT EmployeeID, &quot; & _ &quot;FirstName, LastName, &quot; & _ &quot;(FirstName + ' ' + LastName) As Name, &quot; & _...
  10. 777axa

    DataReader question

    I'm trying to pass a Date value from DB field to a Calendar control using DataReader. It gives me following error: ++++++++++++++++++++++++++++++++++++++++++++++++++++++ Exception Details: System.InvalidOperationException: No data exists for the row/column. Source Error: Line 83...
  11. 777axa

    Foriegn Currency formatting problem

    I'm non-english using win2k with asp.net and MS SQL server7. I changed regional settings in windows for US (currency, delimiters & others) If I use currency formatting {0:C} to pull out data & dislpay it in the textboxes of the datagrid control I'm getting non-US currency (russian in my case)...
  12. 777axa

    Good &amp; bad sides of SAP

    I'm totally new to SAP. Could anybody describe in a few words SAP's advantages over competitors' systems and its shortcomings. Also: Is it super flexible? What programming languages do I have to know in order to use it? Can the solutions /projects be modified/adjusted easily? What is the amount...
  13. 777axa

    How to create a printable version of the ASP page?

    I need to create fliers with some clip art for different customers with the their names and phone ## pulled from the Database. How do I make printable version of the ASP page with these fliers without converting to PDF? I know there are different dynamic methods for converting to MS doc and pdf...
  14. 777axa

    SQL server driver for SqlDataAdapter ?

    On my machine I have SQL server 7 with OLEDB SQL driver only. I can't use it for SqlDataAdapter. How can I install SQL server driver for SqlDataAdapter ? Where can I get it? Thank you.
  15. 777axa

    404.asp error page on IIS5?

    I was told by my new host (shared acc. on win2000 server)that they do not offer 404.asp error page because they can not set them up for for each shared account. Can it be true? On my other server I have 404.asp but it lacks other things.
  16. 777axa

    How to make Flow Layout of the Form default setting?

    I found how to hide grid, but I guess it makes it just invisible. It's a pain to change the layout on each new form. Does anybody know how to change it forever? Thank you.
  17. 777axa

    How to get the Name of the control?

    On a form with lots of radio buttons I'm trying to place the name of the clicked button on a label without doing Select Case or If -Then statements. How to drill down to the name of the clicked control in the controls collection? I'd like to have something like: lblName = Sender.xxx.xxxx.name...
  18. 777axa

    After installing .NET .aspx pages don't work

    Installed updates & everything. Win2000 pro w/ SP2 & IIS, .Net framework, FP exts. VS.NET (on 5 CDs) Classic asp pages run OK. ASPX pages are dislayed but code is not processed - assigning a value to a label doesn't do anything - it stays empty . The only error I get in IIS manager when I...
  19. 777axa

    CodeCharge - good ASP tool?

    I downloaded their 30days trial. So far it's amazing - I've biult several projects (like affiliate registration, tracking and management) in no time and almost everything (95%) works as planned. It looks like that you can save a lot of time for developing basic ASP, .NET, PHP, CFM and PERL...
  20. 777axa

    Checkboxes and multiple delete question

    How can I delete multiple records ? I'm not sure about what asp code should look like. I'm sorry - I'm new to this. Thanks

Part and Inventory Search

Back
Top