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

    Error: Cannot load file or assembly '…' But... Assembly is NOT referenced anywhere in solution.

    I'm going through a bit of a rough time migrating an ASP.NET 2.0 website from a Windows XP (32-bit) machine to a Windows 7 (64-bit) one. There are lot going on but I'll concentrate on the problem at hand. The problem: I'm getting an error that says "Could not load file or assemply 'MySQL.Data...
  2. JCruz063

    SQL Syntax For Copying Field Values From One Table To Another

    Hello all... I have a field in a child table which belongs to a parent table. I'm going to add that field to the parent table and I'll remove it from the child table. Now, data entry started a while back and there are a few hundred child records already. I want to copy the existing values of...
  3. JCruz063

    Creating a thematic map/coloring certain areas of a map in VB6

    Hello all, I'm using VB6 and I have a question. SHORT VERSION: I need to create a thematic US map, i.e. I need to display a map of a given US state, with each region (county) in the map displayed in a different color, based on values coming from a database. Thus, in a map that looks like...
  4. JCruz063

    Is all Visual C++ 2008 code managed by the CLR?

    I've searched online and the answer doesn't seem obvious. I've been programming in C# for a few years and would like to start programming in C++. In deciding which compiler/environment to use, I'm thinking of Visual Studio 2008. The question is: will the C++ code I write in Visual Studio 2008...
  5. JCruz063

    Background Image not showing in Email...

    Hi All... What I'm trying to do I'm trying to send an email with a background image, using ASP.NET 3.5. I am formatting the email as follows: string htmlBody = @" <table style='background-image:url(cid:imgBg); padding:0px;'> <tr> <td colspan='2'> <img alt='' src=cid:imgHeader />...
  6. JCruz063

    Subreport fails to display second page

    Hi all... I have a very interesting and frustrating problem. Here it goes: I have a Crystal report that has a subreport. I'm testing the report with a given set of data for which the subreport is supposed to display two pages. When I preview the report, I see the first page and all is good. But...
  7. JCruz063

    How to access client's outlook inbox

    Hello all... I've been asked to add functionality to my company's website that would allow users to upload part or all of their outlook emails to our server. The sceneario that I've been asked to make a reality is the following: 1. A user goes to our website and logs in. 2. S/he clicks on a...
  8. JCruz063

    How to read client's email box...

    Hello all... My company has an ASP.NET website, and we want to provide an email-parsing system for our clients. With the system, our clients would go to our website, login, and send us a list of emails (which they receive from their clients). Server code would then parse the emails and store...
  9. JCruz063

    Reading an Excel file

    Hello all... I need to read the data from an excel file in my ASP.NET 2.0 application. I am using the following C# code: OleDbConnection cn = new OleDbConnection(); cn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + inputFile.PostedFile.FileName + ";" +...
  10. JCruz063

    Running Visual Studio under localhost

    Hello all... The Setting I recently upgraded to Visual Studio 2005 (from 2002). At the same time, I started working on a ASP.NET website developed by someone else. The website was designed so that path references start with the root (\), so when referencing an image, the path looks like this...
  11. JCruz063

    Fonts change in Visual Basic

    Guys, I've got a very interesting problem... I work with another programmer on the same program, but on separate machines. When I make a change, I give him the .frm, .frx, and .bas files I made changes to. When he makes a change, he gives me those files. Everything has worked nicely for the...
  12. JCruz063

    Query works in MySql, but NOT in Crystal

    Hello All... This post is a bit long because I tried to make everything as clear as possible. Please read on... Report requirements I have a system that allows users to create surveys and have web surfers take them. I have been asked to produce a report that shows how many people took a given...
  13. JCruz063

    Implications of subnetting...

    Hello All, I am creating an ASP.NET application which allows users to create surveys and post them online for web surfers to take. One of the requirements for these surveys is that no single user/computer should be able to take the same survey twice. How can I accomplish this? I am thinking of...
  14. JCruz063

    Error: Invalid Section

    Hi All... I'm a bit lost with a problem with one of my reports. Here's what's going on: My Environment OS: Windows 2000 Server, all service packs and updates installed Crystal Version: 10 Developer .NET Version: Framemwork 1.0, with Visual Studio 2002 Database Server: MySql 4.1 Report Setup My...
  15. JCruz063

    Error Invalid Section

    Hi All... I'm a bit lost with a problem with one of my reports. Here's what's going on: My Environment OS: Windows 2000 Server, all updates installed Crystal Version: 10 Developer .NET Version: Framemwork 1.0, with Visual Studio 2002 Database Server: MySql 4.1 Report Setup My report uses a...
  16. JCruz063

    WHERE statement causes problems...

    Hello All I upgraded from MySQL 4.1 to 5.0. Under 4.1, I had the following query, which ran without a glitch: select parentTable.dateField, childTable.number from parentTable inner join childTable on parentTable.parentTableId = childTable.parentTableId where ( childTable.parentTableId = 0...
  17. JCruz063

    Download window opens twice...

    Hello all, I have an ASP.NET application that allows users to download excel files. The code used is the following: Response.Clear(); Response.ContentType = "application/ms-excel"; string s = "attachment; fileName=\"" + file + "\""; Response.AddHeader("content-disposition", s)...
  18. JCruz063

    Regular Expression Crashes .NET

    Hi All, I'm using Visual Studio 2002 with .NET 1.0. Users have the ability to upload files to my ASP.NET application, and for that, I use the HtmlInputFile control. I have the following code below: string fileName = Regex.Match(inputFileUpload.PostedFile.FileName.Trim(), @"((...
  19. JCruz063

    Alternate way to open an on-demand subreport

    Hi All, Is there any way to open an on-demand subreport through a hyperlink? I'm using Crystal Reports 10. Thanks. JC _________________________________ I think, therefore I am. [Rene Descartes]
  20. JCruz063

    Getting a menu from right-clicking an object

    Hi All... I'm using Crystal Reports 10, and I have a hyperlink on my report that links to a file. At the moment, the user clicks on the link, the file opens, and everybody's happy. But my boss got ambitious, and now he wants to be able to right-click on the link and get two options: either...

Part and Inventory Search

Back
Top