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 Wanet Telecoms Ltd 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: tman24m
  • Content: Threads
  • Order by date
  1. tman24m

    classic asp to web service COM layer

    Hi all, I currently have asp pages that clients submit xml transactions to. The asp pages take the xml and validate it against a schema. Some other light validation ocurrs and the data is fed into a SQL db. I've recently developed a web service which has the same functionality as the asp...
  2. tman24m

    Button Control and Event Handler at runtime

    Help! I swear I've tried everything and getting nothing. I'm trying to add a button at run time but when the button is clicked all I get is a postback event. The event that I want to fire, never does. Thanks in advance....here's my code. Currently this is in the Private Sub...
  3. tman24m

    post a file to an https site

    Hey all, I'm writing a console app in vb.net that needs to upload a file to a secured website. The website has a logon page and then a couple more buttons to get you to the submit page where you upload the file. Does anyone know what the process would be for this? Here is what i've got but...
  4. tman24m

    Dynamic file name on different server

    Hi all, I've been scouring the internet for the last couple days trying to find an example but am not coming up with exactly what I need. I have an ftp server where clients put text delimited files, a different server than my SQL server. I've got a vb6 app that monitors the different...
  5. tman24m

    parsing error?

    I can't find any help on this anywhere.... xsi:nil attribute on element 'CheckDate' is invalid. However, if i take the input file and check it against the schema with XML Spy, it checks ok. It's not happening all the time either, it's intermitent. The same file can be posted with a failure...
  6. tman24m

    Help...Passing data island to popup window

    I can't figure out the correct JavaScript to pass the XML data to a popup window and have it trasformed. Gives me object doesn't support this property or method on myxml.transform(myxsl.xml) Here's what I've got <SCRIPT LANGUAGE="JavaScript"> var oPopup = window.createPopup(); function...
  7. tman24m

    How to JOIN this?

    I have a table with a clientID, employeeID and, a code. I want to join that to another table which will contain the clientID, the code and possibly the employeeID. If the employeeID does not exist, there will be a default record which will contain clientID and the code. The employeeID would...
  8. tman24m

    two resultsets using for xml explicit????

    I'm writing a stored procedure that currently returns xml into an ado stream along with some output parms. I need to add another for explict xml statemnt to my sproc and have it returned at the same time. Any suggestions on how to do this? I've got three ideas. 1) I'd like to be able to...
  9. tman24m

    newbie to xml

    I'm new to xml and i'm looking for a way to output 100+ email letters in html using xml and xsl. the body of the data needs to come from a letters table in sql and the recipients would come from a different table. i have no idea what to do, can i get help? thanks
  10. tman24m

    Printing Datagrid Column Headers

    Anyone know how to make the datagrid column headers print on every page in IE?
  11. tman24m

    call a vb6 exe from sql

    I've got an executable that uploads records from a SQL table to an AS400 file. It runs fine from the server when executed in the directory. However, if I try to execute it with xp_cmdshell 'filepath/file' it hangs. I wrote to a text file after each execution step and it appears to be hanging...
  12. tman24m

    Link tables to AS400

    I'm trying to find out if it's possible to link external data sources to the AS400. I have successfully linked tables from the AS400 to SQL and Access but would like to go the other way now. Anyone know if this is possible and how to? Thanks T-Man
  13. tman24m

    Using the AS Keyword

    Anyone know how to use the AS keyword with the IBMDA400 driver? Trying to do something similar to SQL, i.e. SELECT Name as [First Name] from Names
  14. tman24m

    SelectedItem backcolor

    Hey all, I'm trying to get the selected item (only the selected item) to have a backcolor of cyan. However, the problem is that I can't use the commandname=&quot;Select&quot; method because I've already assigned the commandname property to another command. Here's the code: <asp:datagrid...
  15. tman24m

    Mail Approval Cycle

    Hi Can anyone point out some good articles for programming a mail approval cycle database? I am well versed in VB.net, asp.net, vb scripting, etc. but do not have very much experience with the Outlook object model. Anyone? Thanks in advance tw
  16. tman24m

    hyperlinks in datagrid based on a condition

    Hey all, I'd like to have a field displayed as a hyperlink in one of my columns, but only if one of the other fields = 51. Here is what I've got. Private Sub dgMGLUNSfill() Dim strSQL As String strSQL = &quot;select GJID, GJDESC, GJAMT &quot; & _ &quot;from...
  17. tman24m

    Image directory upload

    Hi all, I'm trying to create an application that takes an entire directory and uploads all of the jpeg file within that directorty to sql server 2k. I have a similar application but it only accepts one image for upload. Here is that code: Sub UploadImage(ByVal sender As Object, ByVal e...
  18. tman24m

    Display multiple charts on one page

    Trying to display more than one chart on a page using ChartDirector. i can only get one chart to display or one chart and 5 missing images. If anyone can help, please do. Thanks Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load...
  19. tman24m

    datagrid custom row colors

    Hello, I'm trying to create a datagrid which has a different color for the row when the group breaks. In the second column of the datagrid I'm inserting a '-1' to flag me that is the row that needs to have a different color. Here is a sample of my grid Document Message Type Message 000000...
  20. tman24m

    Data Reports

    Does anyone remember the simple Access form with a record navigation control? I'd like to build an APS page that does this. I just want a page that opens up and displays the last record of a table (in a non-gridlike fashion). I just installed VS .Net two days ago and it seems like a really...

Part and Inventory Search

Back
Top