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 Mike Lewis 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: *

  1. zyman10

    Turn Word Document into PDF Form

    yeah, so the only way is for the user of the form to have pdf reader... it would be nice to create an HTML form that mail-merged a .PDF or .DOC to me, but that's just a lot of work. unless there is some sort of library that already does this with php or some similar web language, maybe this...
  2. zyman10

    Turn Word Document into PDF Form

    Yes, I guess this is the obvious solution. So as long as you have adobe reader, you can fill out a fillable form i make in adobe standard. That makes sense. Thank you all.
  3. zyman10

    Turn Word Document into PDF Form

    Well having microsoft word would be extra software. I want someone who doesn't have word or any MS product, and no PDF writer to be able to fill out this form, save it, and send it back.
  4. 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...
  5. 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...
  6. zyman10

    Selling an ASP.NET Application

    really? yeah I guess the next step is to ask a lawyer, but i was kind of hoping someone might be able to at least lead me in the right direction or point me to some documentation on this. It's not like I have developed anything ground breaking, I just have some business contacts that would...
  7. 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...
  8. zyman10

    Selling an ASP.NET Application

    Woops I posted this in the wrong forums. Sorry, it can be deleted by a mod. I will post it in the ASP forums. Again, I apologize.
  9. 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...
  10. zyman10

    Stored Procedure not needed, want to do just 1 Query

    Ok, I think I have bitten off more than I can chew once again. I used the idea of a WHILE loop in SQL like gmmastros said to make a whole new query. I am pretty new to JOINs and avoiding Stored Procedures for everything (such a bad habit). But alas, I had to revert to the Stored Procedure for...
  11. zyman10

    Stored Procedure not needed, want to do just 1 Query

    I didn't forget about this post, I plan to post my stats. But, I am actually adjusting my query a little bit, and trying to apply George's and Markros' ideas to a larger query and I am having troubles. I just need a little time to tinker, I guess I am not a SQL master like you two yet! :-)...
  12. zyman10

    Stored Procedure not needed, want to do just 1 Query

    George + Markros I just used both of your methods and it seems everything returned is 0 or 1 ms. I guess my DB is too small to really measure the query effectiveness?? The DB is 3 GB, but the Sales table is only about 250 MB and the Items is only 200 MB and Inventory is even smaller. Is...
  13. zyman10

    Stored Procedure not needed, want to do just 1 Query

    George, thanks a lot!!! That was an awesome explanation. I want to compare these performance numbers but I don't know any other way to compare them besides just looking at how long it took the query to run in the bottom right corner of SSMS. Usually it either says 0.00 or 1 second. So is...
  14. zyman10

    Stored Procedure not needed, want to do just 1 Query

    markros I am not sure I understand... I am inner joining with the sales table. How would I do this?
  15. 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...
  16. zyman10

    Implicitly coverting a double? to double

    why was googling this so terrible until i posted this. jesus. i'm sorry for bothering everyone. i just found the answer. the '?' allows for nullable types in C#. the reason it was trying to cast was because i needed to grab the value from the variables like weight.Value; instead of just...
  17. 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...
  18. 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...
  19. zyman10

    Returning Row with the Max Value in a JOIN

    Yeah I looked at the blog, but some of them won't work for me since I am joining. I will go ahead and try all of these and even the ROW_NUMBER() because I am SQL Express 2008. The only way I know how to post performance results is by listing the time the query took. Is that what you mean...
  20. zyman10

    Returning Row with the Max Value in a JOIN

    Ok, great, that helped. The query you wrote made gave me something like this when I used it: .... 23 -------- GOG-Green ---- 58 ---------- Goggles Kit 3 23 -------- GOG-Green ---- 58 ---------- Goggles Kit 3 23 -------- GOG-Green ---- 58 ---------- Goggles Kit 3 .... So then I just did a...

Part and Inventory Search

Back
Top