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

    Deployment of an app with webservice

    I have a web application that I wrote that uses a web service I also wrote. Now I have to move the application and web service to test, then eventually to production. What is the right way to do this? My assumption is when I move the application to test I will need to change url of the...
  2. timothy

    Webservice, XML, fixed-len file

    I've never done a webservice before. Just looking for tutorials or sites that have information that can help with the task below... I need to build a web service that can receive a plain fixed len text file and return a response in an XML file. My customers should be able to build a web page...
  3. timothy

    Getting to a cell inside a datagrid, templateItem, td

    Hi anyone know how I can get to the cell: "<td><%# DataBinder.Eval(Container.DataItem, "USL")%></td>" in the below code to change it? For example: This is how deep I have to go in the DataGrid (highlighted in blue)... <Columns> <asp:TemplateColumn> <ItemTemplate> <table> <tr> <td><%#...
  4. timothy

    DataGrid with Edit and Multi Select Listbox

    I have a ASP.Net DataGrid with edit columns. I bring in a list of users with info like account number, custid etc. Everything works fine. Now I want to add an edit column that contains a multiple select listbox. When the listbox loads I want to select the appropriate items for the user. Anyone...
  5. timothy

    run an exe from C# application

    I have an older product from Sybase that I need to fire off from a c# application. Normally the exe would be run from dos with some args passed in. How can I fire off this program from C#? I haven't found any docs on the subject. I'm sure there must be someone else that has had to deal with...
  6. timothy

    Can't find selected items in a listbox

    I have a listbox that I populate it from the database; then on submit check for selected items. It always returns false (not selected). However if I hardcode the values into the listbox I do find the correct selected values. Any idea why this would be? private void Page_Load(object sender...
  7. timothy

    ASP controls no properties, not connected

    I have a web page that when I click on a control the property window is empty. Not only that but when I double click a control or page in design view the event is not created in the code behind, in fact nothing happens. Seems like the page is not attached to the code-behind, however in the...
  8. timothy

    database | class | reuse

    I thought it would be nice to setup a database "accessor" (DBA) class where you could instantiate it, provide a connection string and use it's methods to do all of the database tricks. This is a sample of what I have. I'll describe the problem below... This is a method that returns a datareader...
  9. timothy

    Calling Javascript functions in an asp.net page

    Pulling my hair out on this one. I want to run a simple js function when a user selects an item from a drop down (I'm sure this is an ASP.NET issue). This is my Javascript function: function SetupUserType(UserType){ if(UserType=='Customer'){ lstNPCs.Enable=false...
  10. timothy

    Line Chart Question

    I'm trying to add a second line on my chart, and I'm having a bear of a time figuring it out. (I'm using .NET 2003 Crystal Reports) I have a DataSet XML document that contains data like this: Month Mo Yr Text Std Dev Year 1 January, 2003 13.255 2003 2 February, 2003 10.979...
  11. timothy

    XmlTextReader get values of elements

    All I want to do is get the value of the element is the following piece of code... if(System.IO.File.Exists(m_appConfig)) { XmlTextReader MyReader = new XmlTextReader(m_appConfig); MyReader.Read(); while(MyReader.Read()){ MyReader.MoveToElement(); if(MyReader.NodeType==XmlNodeType.Element){...
  12. timothy

    Package that includes only what is needed

    Using a tutorial in .NET I figured out how to package up a project for redeployment at a real high level. The package I created will require MDAC and .NET Framework be downloaded from MS before install. Isn't this kind of overkill? All I need is a few ODBC drivers and the namespace dll’s used in...
  13. timothy

    database class

    I am having a hard time finding a way to make a nice clean-cut database class that I can use in all of my apps. Seems that I have to stick with the classes MS provides and just use them when needed. Does anyone know of a tutorial or reference on building a dynamic class to access different...
  14. timothy

    Good OOP?

    I'm just starting to develop using OOP. I have a project where I need to use an FTP class to pickup a file with an order, validate the structure and some field values, like part number, against a recordset the update another database. I thought this would be a good place to start my OOP...
  15. timothy

    DELETE FROM through ODBC

    I am passing an SQL statement from VB6 (&quot;DELETE FROM tblNAME&quot;) to VFP 6 using ADO/ODBC. The table marks the records for deletion successfully but now how do I pack the table? Thanks in advance for your help.
  16. timothy

    numberformat()

    I am using the numberformat function like so... #numberformat(variables.totHours,'9,999.0')# The objective is so .3 shows as 0.3 . This works find in development but when in production the number comes up like .3 . I tried another format ___._ with the same results. Both the hardware and...
  17. timothy

    Perl-CGI Apache Server Error

    I am totally new to UNIX, LINUX, Apache and CGI. This is the first time I left the<br> comfort of Cold Fusion on NT...<br> <br> WHAT I DID...<br> I wrote a Perl script that allows the user to add links to a page from<br> another (data entry) page.<br> <br> THE PROBLEM...<br> When the user...

Part and Inventory Search

Back
Top