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

    Configuration system failed to initialize

    Hopefully someone can help we with this. I keep getting this error. I read different things in different places and none have helped. I already tried deleting the file, with no luck. I read somewhere it might be the XML. Can some one look this over to see if there is a problem with it please...
  2. WarcraftPlayer

    Time to Process

    Is there a function or object that tells you the time it took the application to execute? I have a application that is updating data and moving files and need to know the total time to exectue. /cry /help [viking2] LVL 60 ROGUE
  3. WarcraftPlayer

    2 digit month

    Is there anything besides System.DateTime.Now.Month, that will give me a 2 digit month? This only gives me 1 digit. I could write a function easily but being new to C# wanted to make sure .net did already do it for you. Already did that once and kicked myself for an hour. /cry /help...
  4. WarcraftPlayer

    Using a custom control

    How do i pass a parameter to a custom control? I have a custom viewer control when the viewer loads I want it to display whatever image is passed to it. Right now I have it working where when the control is loaded a default image is displayed. This is a code block from my control GetFile()...
  5. WarcraftPlayer

    Using a form in a control

    This is a question about the best way to do something. I made a control, in the control if you click a certain button it pops up a form with some information. Now I got it to work by creating the form and publishing it and then in my control referencing the exe. But I wonder if this is the...
  6. WarcraftPlayer

    Noob Question

    Ok still kind of new to C# and .net in general so this is a really beginner question. I understand Inheritance, just not sure how I would use it for my problem. I created an image viewer(form1). I want to be able to put that viewer on other forms, say a personal information(form2) or a CS...
  7. WarcraftPlayer

    Convert PDF to TIF

    I need to convert a PDF to a TIF image. Can anyone point me to where I might learn how to do this or even a good control to buy? /cry /help [viking2] LVL 60 ROGUE
  8. WarcraftPlayer

    Printing from the PictureBox Control

    Is it possible to print the image in a PictureBox? /cry /help [viking2] LVL 60 ROGUE
  9. WarcraftPlayer

    Placing Data on a page

    Ok really new to asp.net I think I understand the whole datagrid and dataview. But I just can not seem to get one thing. In classic ASP if I wanted to put a certain value from a database I would put something like this <%=rscustomers("CustomerID")%> And I could put anywhere I wanted. In a...
  10. WarcraftPlayer

    Help with Query

    From the following table. ID ColA ColB 11 55 FL 11 56 CA 11 898 FL 11 54654 YY 11 565 FL 44 1356 FL 44 2 CA 44 5655 XX How would I get the following result ID ColB 11 FL 11 YY I want to get all the IDs that have...
  11. WarcraftPlayer

    Updating 2 tables at the same time

    Not sure if this is possible, I need to update 3 columns. My current query is below. UPDATE TableA SET ColumnA=Value ColumnB=Value FROM TableA A INNER JOIN TableB B ON A.tableid = B.tableid WHERE A.column = 'something' AND b.column = 6 Column A and B are in Table A the third...
  12. WarcraftPlayer

    Optimize delete query

    How would I optimize the below query so it would not lock the table? Delete from tableA where tableAid = 12345 OR tableAid = 54321 /cry /help [viking2] Sergeant Warkois LVL 53 Paladin
  13. WarcraftPlayer

    Problems with Update join

    I have an update query. That takes a group of documents and marks them as approved. UPDATE documents SET Approved = 1, Imported = 1, ApprovalDate = getdate(), ApprovedBy = 'JOE', FROM documents d INNER JOIN customers c ON d.customerid = c.customerid WHERE d.tempid ='AUTOPOST'...
  14. WarcraftPlayer

    Multiple Update

    I am not sure going about doing this. In my proc I need to update a table the only thing is sometimes its a single update and other times it is a multiple update so basically I need to merge these 2 togther and am not quite sure how to do it. update tableA Set CustomerInfo = Getdate() Where...
  15. WarcraftPlayer

    Error

    I am pretty new to dealing with pervasive. Someone tell what this error means. [Pervasive][ODBC Client Interface][LNA][Pervasive][ODBC Engine Interface][Data Record Manager]The data buffer parameter is too short(Btrieve Error 22).
  16. WarcraftPlayer

    Rounding Up

    I was wondering if anyone has anything where a number is always rounded up to the next integer. I know you can round but I always want it to go up.
  17. WarcraftPlayer

    Finding the length

    I need to make the bold number dynamic. The query works fine. The problem is when I pull the data gets pulled, the javascript on this third party software does not like the ending spaces (The tracking numbers vary in length). If the software was ours I could fix it on that end but that is not an...
  18. WarcraftPlayer

    Pulling number out a string and inserting

    I have Temp table A that looks something like this Customerid Notes CreateDate 12345 FEDEX #123456789 4/7/2005 12377 Customer complained 4/7/2005 I also have another permanent table B that looks something like this Customerid Notes...
  19. WarcraftPlayer

    Converting date from a pervasive DB

    I posted this in the pervasive forum but wanted to post it here in case someone had the same issue in this forum and was able to help me. Im trying to pull data from a pervaive table via a DTS in SQL Server. The query below returns data in the pervasive control center but when I try to run the...
  20. WarcraftPlayer

    Convert Date

    Im trying to pull data from a pervaive table via a DTS in SQL Server. The query below returns data in the pervasive control center but when I try to run the DTS it does not return anything. I think it is because it reads the date as a string not as a date. (I had that problem in a page I was...

Part and Inventory Search

Back
Top