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

  1. smeeks

    make and .aspx page sleep???

    I have link that generates a Crystal Report...however, the report is quite involved and takes about 15 seconds to run. I would like to kick the report off as a thread....then goto another page that "sleeps" and checks for the creation of the report....once the report is created then goto...
  2. smeeks

    Just some advice would be ok

    I am the only programmer at my company and need some advice from someone who also knows VB.NET. We have an Access Database and our user base is growing.....people are use to opening the "table" and editing, filtering, sorting using this method. I would like to "duplicate" this same...
  3. smeeks

    Easy Question.....VERY NEWBIE HERE!

    Yep. I have been using VB for so long and I have only used C on a unix system....so since I was using the .NET IDE I just assumed it would act the same as VB....but guess not. That was my problem though...I was typing it in lower case. thx.
  4. smeeks

    Easy Question.....VERY NEWBIE HERE!

    I am trying to do a "Hello World" in C#....when I open a blank project.....put a button on the form....and under the click event I am typing in Messagebox.Show. First of all intellisense doesn't recognize it and when I build I get the following error: The type or namespace name 'messagebox'...
  5. smeeks

    Adjust Volume

    Anyone know how to adjust speaker volume in .NET thanks.
  6. smeeks

    Who terminated my app?

    An option? You could create a log file that is written to when the user exits the application gracefully OR clicks the "X". This way you would know if the application died on purpose or not. Do you need the code to know if the user clicked the "X"? sm
  7. smeeks

    Problem Setting Form Position

    I have a form that I start maximized and if the user moves it I have a line of code in the form move event: me.location = new point(0,0) .....hoping this would not allow them to move the form....but the form is still able to be moved. I know my event is firing properly...I have checked that...
  8. smeeks

    Multiple Site Viewing

    Have you checked the following: Another thing that throws a "forbidden" error is when there is no default document in a directory and you don't have permissions to browse the directory contents. Perhaps you need to tweak the default document(s) for your website. If so....I'm still thinking.
  9. smeeks

    Multiple Site Viewing

    Did you check permissions on your web directory to make sure IUSR_(machinename) has permissions? If your getting the forbidden error....it sounds like a permissions issue with IIS? What version of IIS are you using? There are some .config files that need to be configured properly in IIS6...if...
  10. smeeks

    Multiple Site Viewing

    Thanks. I set up DNS and it worked great!
  11. smeeks

    Multiple Site Viewing

    I am new to this IIS thing....so please be patient. If I have multiple sites set up on IIS and I want to look at EACH locally on the server...how do I do this? I know I can type in the IP of the machine or localhost and see the default web site, but how do I view the others? PS. I am running...
  12. smeeks

    DateTimePicker

    Yeah....I had the same idea...but when the user picks an actual date from the drop down calendar....no event fires...so I can never find out what the last date was? Only when they click the down arrow on the dtp do the events fire. A dumb approach in my opinion. Thanks for the suggestion though!
  13. smeeks

    DateTimePicker

    I am writing this because I know when I read/answer threads I look primarily at the number of replies. If it's a thread that has been replied to....I will generally go on down the line. SO...this is in reference to me jumping the gun earlier and now I am stuck.......my problem: When you click...
  14. smeeks

    DateTimePicker ValueChanged Event

    Well...I spoke to soon. This event doesn't work properly....so if there are any suggestions I am still open. Thanks
  15. smeeks

    DateTimePicker ValueChanged Event

    I don't know how many times I post a question and then figure it out. I didn't even jump the gun on this one....I have been trying to figure this out for at least 2 or 3 hours. Oh Well, I figured out what to do. For those who have this same issue....use the TextChanged event.
  16. smeeks

    DateTimePicker ValueChanged Event

    When you click the down arrow on a DTP control, the ValueChanged event fires even if you don't pick a date in the drop down calender? I only want this event to fire if the user actually picks a different date than was previously in the DTP? Is there another event I should be using...
  17. smeeks

    Creating A New Instance of a Form

    Thanks Guys....that helps me out! Shane
  18. smeeks

    Creating A New Instance of a Form

    Sorry about that. I didn't paste it in. for simplicity sake let's say I have a Child Form called Form1.. on this form is 2 radio buttons.. From the parent form I do: Sub ShowTheForm() dim NewForm1 as new Form1 NewForm1.ShowDialog() End Sub Here is the event that handles my radio...
  19. smeeks

    Creating A New Instance of a Form

    I have a form with a some controls and events for those controls....when I create an instance of that form the controls (radio buttons) event fires before the form is even loaded. Then....after my form loads, when I click on the either control (in this case either of two radio buttons) the...
  20. smeeks

    Dynamically Created Controls (creating an event)

    Thanks for direction! Shane

Part and Inventory Search

Back
Top