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 SkipVought 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
  • 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

    I was able to get it to work, just the way i was passing the value. /cry /help [viking2] LVL 60 ROGUE
  5. WarcraftPlayer

    Using a custom control

    Thanks for the help and the pointers. I am still having one problem. None of the controls(picturebox, labels, etc) in my control(the viewer) are letting me use them. The path gets passed in and I see the result on the return(nice touch that helped me alot btw). But for some reason the...
  6. 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()...
  7. WarcraftPlayer

    Using a form in a control

    Nevermind got it. Just was not going highenough in my solution tree to add the other project. /cry /help [viking2] LVL 60 ROGUE
  8. 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...
  9. WarcraftPlayer

    Noob Question

    Ok, I have not gotten to far I will see about making it into a control, never did that but I am sure it bill easy to find how to do it. Thanks /cry /help [viking2] LVL 60 ROGUE
  10. 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...
  11. 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
  12. WarcraftPlayer

    Printing from the PictureBox Control

    nevermind "interface errror" that old problem between the chair and the keyboard. thanks a bunch. /cry /help [viking2] LVL 60 ROGUE
  13. WarcraftPlayer

    Printing from the PictureBox Control

    Thanks for your response. For some reason when the Print Preview opens it says "Document does not contain any pages." I am using a multi-page tiff so this is kind of strange. Going to keep playing with it, thanks for pointing me in the right direction. /cry /help [viking2] LVL 60 ROGUE
  14. WarcraftPlayer

    Printing from the PictureBox Control

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

    Placing Data on a page

    yes ralph thank you so much for the follow up. I racked my brain for an hour got a little to comfortable with the contols that I did not focus on the code behind, but I finally got it. /cry /help [viking2] LVL 60 ROGUE
  16. WarcraftPlayer

    Placing Data on a page

    Hmmm a little confusing. But gives me something to start looking at thanks. /cry /help [viking2] LVL 60 ROGUE
  17. 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...
  18. 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...
  19. WarcraftPlayer

    Updating 2 tables at the same time

    Yea I thought so thanks. /cry /help [viking2] LVL 60 ROGUE
  20. 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...

Part and Inventory Search

Back
Top