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

    Unable to read HTTP-POST data from Authorize.net Relay Response

    I am using Authorize.net's Server Integration Method, trying to get relay_response to work where they do an HTTP POST to a page back on my server with information about the credit card transaction that just occurred so I can display a receipt and update the database. It is displaying the...
  2. joshbula

    Button with OnClick not submitting in IE8

    (note, I originally posted this in the ASP.NET forum, but haven't received any replies, so I'm trying here as well) Hello, I have two buttons, one is a submit button. When the submit button is clicked, both buttons disappear and a third button that is disabled with the text "Submitting..." is...
  3. joshbula

    Button with OnClientClick Not Submitting in IE8

    Hello, I have two buttons, one is a submit button. When the submit button is clicked, both buttons visibility = false and a third button that is disabled with the text "Submitting..." is displayed. It works fine almost all the time on almost all browsers, but for 1 user in about 200 people...
  4. joshbula

    Sorting Times stored as nvarchar

    Hello, In SQL Server 2005, I am working with a table that has a nvarchar column that stores times in the format "8:30 AM" as a string. I need to sort by the actual time, not just the characters, so for example "8:00 AM" needs to come before "12:00 PM." Unfortunately converting the field to a...
  5. joshbula

    Listview Grouping with Header and Footer

    Hello, I am using the following Listview: <asp:ListView ID="ListView1" runat="server" DataSourceID="sqlJudgeRatings"> <ItemTemplate> <b><%#EntryInfoGroup()%> </b> <td><font size="1px"><asp:Label ID="JudgeRatingLabel" runat="server" Text='<%#...
  6. joshbula

    Need advice- Automatic Scheduling App.

    Hello, I just need some general advice on where to start with this, and the general approach to take. I'm using Asp.Net with Visual Basic & Sql Server. I have Rooms and Performances. Each performance needs to be automatically scheduled into a Room. Each Room can only handle a performance...
  7. joshbula

    Crystal Reports in VS2008 - Need Beginner's Tutorial

    Hello, I'm looking for a tutorial for the Crystal Reports Viewer... I'm using Visual Studio 2008 to develop a VB.NET web app. I have a query in a TableAdaper in a DataSet. I have figured out how to create and layout a simple Crystal Report using that schema. How do I bind the DataSet query...
  8. joshbula

    Complicated DISTINCT query problem

    The query below returns a list of events. Some events have more than one student in them causing them to be duplicated for each student. Some events don't have any students in them, which is why I used the Left Outer joins. I need to modify it to only return one row for each event, as if the...
  9. joshbula

    String being converted to Integer, causing System.InvalidCastException

    Hello, I am adapting this tutorial to my needs: http://www.shiningstar.net/ASPNet_Articles/DataSet/DataSetProject.aspx And I am receiving this error when it tries to take the Excel spreadsheet data and insert it into the SQL table: System.InvalidCastException: Conversion from string...
  10. joshbula

    Conversion failed when converting from a character string to uniqueide

    I'm trying to UPDATE a row using asp GridView edit. Both attributes are uniqueidentifiers. The columns are guid in the database. Exception Details: System.Data.SqlClient.SqlException: Conversion failed when converting from a character string to uniqueidentifier Here's the SqlDataSource...
  11. joshbula

    Sql Data Reader Scalar Variable @username Not Working

    Hi, please help a newbie... Visual Basic 2008 web application, this is the Login page, and I'm trying to lookup the schoolID and schoolName for the user based on their username. (from the Asp.Net MembershipUser thing) When I change the SELECT statement to put an actual known username instead...
  12. joshbula

    Folders Disappeared and Replaced with 32k files

    Hello, I have 2 drives in a system, C: is for Vista and programs, and the D: drive is where I store all my data, including users folders. They are two separate physical drives. I recently downgraded to XP by formatting the C: drive and doing a clean install of XP. After completing the...
  13. joshbula

    Folders Disappeared from Second Drive after Downgrade from Vista to XP

    Hello, I have 2 drives in a system, C: is for Vista and programs, and the D: drive is where I store all my data, including users folders. They are two separate physical drives. I recently downgraded to XP by formatting the C: drive and doing a clean install of XP. After completing the...
  14. joshbula

    mail() returning TRUE but not sending e-mail

    Hello, I am using the code below to try to send mail, and it is returning TRUE, but the recipients are not recieving the messages. I have tried with several e-mail addresses that are known to be good, and have checked for spam filtering as well. The sendmail binary is in the path, and the...
  15. joshbula

    Labels are printing the wrong field

    It has several tables joined together. On the main table, I have a field named “Band” that is joined to a table named “Bands”. I did it by selecting the “lookup wizard” in the field properties. So, for the “band” field in the main table, it looks up values in the “Bands” table and has a...
  16. joshbula

    Reassigning a variable in Dreamweaver-generated code

    I am trying to modify this Dreamweaver-generated code to allow a user to select their preferred e-mail address for a Yahoo Group. I want to assign $yahoomail the value of one of the other text-input boxes on the form, either home-email ($hemail) or school e-mail ($semail). In the form, $ymail...
  17. joshbula

    Display number of &quot;Yes&quot; and &quot;No&quot; answers in a survey

    I am very novice at asp and SQL, please help point me in the right direction: I am using ASP JSCRIPT and SQL Server 2000 Table name is dbo.survey Field name is q1 Each record has either "Yes" or "No" for this field. I want to display how many "Yes" and "No" answers there are like this: 1...
  18. joshbula

    Object Required Error

    Please help... This is a script that was originally used with a microsoft access database for user id and password checking. I'm trying to modify it for use with a SQL Server instead of the Access database, but I keep getting this error: Microsoft VBScript runtime (0x800A01A8) Object...

Part and Inventory Search

Back
Top