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: tc3596
  • Content: Threads
  • Order by date
  1. tc3596

    Datagrid, ComboBox and Default Values

    I have a datagrid on my windows form with a combo box, which I dynamically create at runtime. Everything works great. I choose a value, I save it, it saves correctly. FYI, the datagrid is unbound. However, I can't seem to find a way to populate the combo box with the value from the saved...
  2. tc3596

    XMLDocument with no node..I think

    I need my function to pass back data as a XMLDocument The result needs to be as.... <Challenge><\Challenge> <Reponse><\Response> The service seems to auto place an xml declaration, so I don't need to put that in place. Also, it puts back a GetNewPalletInfoResponse node as well.... How can i...
  3. tc3596

    Web Service Issues

    I am pretty new to web services, so I hope this does not sound too newbie like, but I appreciate any thoughts any one has on this topic. I am writing a VB.Net (Visual Studio 2008) web service. In testing, in Windows (locally), the program displays in internet explorer with the 5 parameters the...
  4. tc3596

    Web Service DataSet question

    I have created a Web Service using Visual Studio 2008. It passes a dataset back to the calling service. I need to get the data back ni a specific format.. For Example.. <?xml version="1.0"?> <Envelope> elements are.. <Challenge /> <Response /> </Envelop> Currently, the resultset looks more...
  5. tc3596

    Report Layout Options

    I am fairly new to SSRS. I come from a Crystal world where it seems that everything is pretty easy to do. Trying to replicate this functionality in SSRS can be cumbersome and non intuitive. Anyway, I have been trying to come up withy this particular layout, but have not been able to do so. I...
  6. tc3596

    Unexpected Call to Method or Property Access error

    Hopefully, someone can assist me with this as it is officially driving me crazy at this point. I have a web page with a number of records in a list...each has a checkbox. User can check however many records they choose. After selecting (i.e. 5 ) checkboxes, they click a button to email these...
  7. tc3596

    Popultaing a ListView

    I have read many articles on this and nothing seems to work...Here is my code.. Dim myConnection As New SqlConnection myConnection = New SqlConnection("server=localhost;database=TestDB;Trusted_Connection=Yes;") Dim myCommand As New SqlCommand("Select Top 100 SNR_Id,Ord_no...
  8. tc3596

    Using SMO to Create Table scripts with Dependencies

    Here is my situation. I have a table which has 1 column. This column contains the table names I need scripted out to their own individual sql files. Via a SSIS package, I loop through each row and create a table script with dependencies set to true. That all works great. Here is my...
  9. tc3596

    CDO with one bad email

    I am using CDO via ASP to send out to multiple "To" receipients. This is working fine. However, if one of those emails is invalid, nothing gets sent out. ASPMAIL could be trapped for this or it send out all by that one bad one. Can cdo.nessage do this? Thanks.
  10. tc3596

    Email Options

    I have a web site that was written mostly using ASP classic (some pages use .NET). It will eventually all get rewritten using .NET. Currently, I am using ASPMail which is an older technology. I was reading about CDOSYS (ASP classic) and System.Web.Mail and/or System.Net.Mail classes. I'd...
  11. tc3596

    InnerHTML - function with elementId help

    I am knew to javascript, so I hope this question doesn't seem too novice. Basically a user types in a customer number and I need to populate a customer name. I have a built in function that will do the lookup when you pass it the table, field and where claus. Here is the line of code...
  12. tc3596

    Set a variable within VBScript

    I'll try to explain myself clearly. Here is some code... <% Option Explicit Response.Expires = -1 Response.Buffer = True Dim vScaleNo %> <input id="lazy" type="hidden"> call dice() <script language="vbscript" type="text/vbscript"> sub Dice() dim Prj Prj =...
  13. tc3596

    pass function an array from Page_Load

    Here's my situation. I am trying to create a chart and display it on a web page. I found some code that does all of this for me using javascript. Unfortunately, the example hard codes the array values (chart is actualy a gantt chart). As a matter of fact, all the examples hard code the data...
  14. tc3596

    Resize a Div

    My project is to create a Gantt chart. I found some code online that does what I need, now I need to be able to resize the graph bar. It would end up resembling what you can do in Excel through cells. I have an HTML page that uses a js script as it's source. I know in the code where to put...
  15. tc3596

    Comman-Line Parameter into VB6

    From VBA I am trying to call a VB exe and pass it some parameters. However, it is not working. Nothing seems to be getting passed. Here is my call and VB code. CALL Shell "C:\prjIconAutoSync.exe dice" VB CODE Sub Main() Dim aryargs MsgBox Command If Command <> "" Then...
  16. tc3596

    shellexecute problems

    Here is my code in VB (does not work)..... Dim StartDoc hwnd = apiFindWindow("OPUSAPP", "0") StartDoc = ShellExecute(hwnd, "open", CurDir$ & "\1.bat x.txt y.txt", "", _ CurDir$ & "\", 0) Here is my direct dos call (which works).... C:\Documents and Settings\dysa107365\My Documents\Exact...
  17. tc3596

    New to XML - Using SQLXMLBilkLoad for Import

    In trying to use SQLXMLBulkLoad, it requires a schema and an XML file. The person sending me the data for import only gives me the one file shown below. Should I be asking for a separate schema file from him, or is SQLXMLBulkLoad going to grab the schema from the location specified in the XML...
  18. tc3596

    Import XML into SQL Server

    I am new to XML and was wondering how I could go about imnporting XML data into SQL Server via Visual Basic. In my reading, I learned about SQLXMLBulkLoad. However, this requires a schema and an xml file. Here is a snippet of the xml file shown below. Questions I have: 1) is this the best...
  19. tc3596

    Using Crystal API (can't print multiple reports)

    Here is my code... Basically the Userform_Activate kicks off....Calls RunCrystal once, (report pops up and all is well). 2nd report calls RunCrystal and nothing....Any thoughts? Private Sub UserForm_Activate() Dim strReports As String Dim strReportName_1 Dim strReportName_2 Call PEOpenEngine...
  20. tc3596

    View Sent Items from Inbox

    I hope this isn't basic Outlook functionlity, but I would like to view my replies from within my Inbox. So, if I am looking at my inbox, I would like to click the mail received and see my replies to the right of it (or something close to this). I have experience using vba with excel and...

Part and Inventory Search

Back
Top