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

    Turn Word Document into PDF Form

    Hi, I have a MS Word document that is just a form like you would fill out at a doctor's office or job interview, and I need to turn into a PDF. The issue is not the conversion. The issue is once it is converted I want the form fields inside the PDF to be editable. So if I put this PDF out on...
  2. zyman10

    Hosting Java Web Service

    Hi, I am new to Java Web Services. A team member and I are beginning a new project where we are gathering some data from eBay via their API and then taking that data to do CRUD actions on a local MS SQL Database on our network. We want to write this in Java. The architectural model we chose...
  3. zyman10

    Selling an ASP.NET Application

    Hi, I have been learning ASP.NET on and off for a while now and I have created a pretty cool little application in my spare time. I think people might actually buy it if I decide I am going to sell it. All I used to make it was Visual Web Developer and SQL Express 2005/2008 which are both...
  4. zyman10

    Selling an ASP.NET Application

    Hi, I have been learning ASP.NET on and off for a while now and I have created a pretty cool little application in my spare time. I think people might actually buy it if I decide I am going to sell it. All I used to make it was Visual Web Developer and SQL Express 2005/2008 which are both...
  5. zyman10

    Stored Procedure not needed, want to do just 1 Query

    I am not that familiar with the ins and outs of SQL queries, but I can usually get things done with a stored procedure, but I have decided this is one time where I absolutely know what I am doing can be done in just one simple query, I am just not sure what I need to do next. My Stored Proc...
  6. zyman10

    Implicitly coverting a double? to double

    I am starting to learn ASP.NET with C# and I am trying to create the Data Access Layer and Business Logic Layers for my .aspx page. In my DAL (.xsd) I have a Table called Parts that contains field "Weight" that is a System.Double In my BLL I am making a function that eventually Add Parts to...
  7. zyman10

    Conditional Formatting won't persist after modification of cell

    I am trying to make a sheet with alternating row colors in open office. The way I accomplished this was Format->Styles and Formatting-> Add New Named that new format "blue" and then modified that format to have blue background. Then I went to Format-> Conditional Formatting-> Where I put...
  8. zyman10

    Returning Row with the Max Value in a JOIN

    I am joining two tables together. First table (Parts) contains PartID, PartName Second table (Products) contains ProductID, PartID, Title The Parts Table contains unique Parts so when I do a select on it, no duplicates are returned. However, when I do something like this SELECT...
  9. zyman10

    3D Headphones Wire / Cord with Perspective

    Hi All, I am trying to create a dancing/spiraling cord for a pair of headphones I have designed in illustrator. I created my wire / cord by doing a pen tool and just dragging the pen tool all around the screen making neat little curves which actually looks pretty decent. Then I did a small...
  10. zyman10

    Two sets of Tabs on the Same Page

    Hi, I am having trouble with two sets of tabs using on the same page. I control both sets of tabs with the show() method in javascript with this code: <script> var shown = document.getElementById('top1'); function show(id) { if (shown) shown.style.display = 'none'; shown =...
  11. zyman10

    Drilling Down through Mulitple Tables w/ 1 Efficiency..

    Hi All, I have a question that is probably pretty easy, so bear with me here... All I want to do is take an OrderNum I am given and return all of the ProductTitle(s). Obviously all of the tables below have more fields, but I have only listed the important ones. After the table structure, I...
  12. zyman10

    Design of My Tables

    I am trying to make sure I design my database correctly/optimized and easy to understand. So what I did, was make 3 tables. Parts: PartNum Brand Description Products: ProdNum Title KitNum PartNum Kits: KitNum PartNum Description So I am selling this stuff in my store and I only want 1...
  13. zyman10

    Internet Service Upgrade possibly causing Router connectivity issues

    I have this router: http://www.netgear.com/Products/RoutersandGateways/WirelessGRouters/WGR614.aspx Recently I upgraded my connect through my ISP (Time Warner) from the standard 10Mbps to 15Mbps. Before the switch, I had absolutely no trouble connecting to the Wireless network. I have 1...
  14. zyman10

    Mounting a Remote Network Drive

    I know how to map a drive on a computer that is in the same network, but how can I mount a drive on a remote computer (one that is not on the same network as me) Thanks
  15. zyman10

    Where are Stored Procedures Stored?

    I am quite new to SQL Server and definitely new writing stored procedures. I have written a stored procedure in the Query window in SQL Server Mangement Studio Express where I am just pulling the sales from the Sales table: CREATE PROC GET_ALL_SALES_STATUS ( @Status INT ) AS SELECT * FROM...
  16. zyman10

    SQL Express BackUp/Restore

    Hi All, I have SQL Server Express Edition installed on my computer with Windows XP 64-bit. But I just bought Windows Server and want to clear everything off and start fresh with windows server. Since SQL Express doesn't have import export, how can backup and restore my DB as its pretty...
  17. zyman10

    Auto Generate Image Names

    Hi All, This is my first post, so I'm sorry if I mess up. I am working on a website, and I have a question that may be stupid, so maybe you can point me in the right direction so I don't waste anyone's time. I have a image that I want to copy, rename, and place in the same directory as the...

Part and Inventory Search

Back
Top