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

  1. adamroof

    code thinks deleted stored procedure still exists

    Hmm, try the simple stuff... are you sure you are hitting the right database? Not a test copy somewhere else? Does 2008 tombstone deletions? I've been using 2008 mgmt studio, but not 2008 server so I dunno about that. When you are looking at your connection, double check you arent hitting...
  2. adamroof

    Upgrade 4.3 to 4.4

    Well, that is a great question. You ask a lot of great questions. Will there be a part of the data migration process that will be skipped if we miss a version? Cumulative?
  3. adamroof

    Upgrade 4.3 to 4.4

    Hey everyone! Are there any major caveats to upgrading 4.3 to 4.4? It looks like they are changing the Inventory modules primarily. Are the tables getting revamped, so I will need to fix the Crystal Reports? I am decent at modifying those. I only have one VI job and I am pretty comfy updating...
  4. adamroof

    CNAME to godaddy server?

    Hi, I have full server and dns control over a domain name. I want a subdomain to point over to a site hosted over at Go Daddy using redirection similar to setting the Home Directory in IIS to "A Redirection to a URL" and client sent to "The exact URL entered". When the url is entered it goes...
  5. adamroof

    Flash 10.1 Upgrade Rights

    Why do i have to go to everyone of my workstations that do not have admin rights and log the user out, log in as an admin and install Flash. The last upgrade (i think to 9) i had to request permission from adobe to download an offline installer so i could link and allow a temp account to...
  6. adamroof

    FileUpload control resending

    1. Place a LinkButton on your "original" page (that calls the event in step 2) 2. Create a server side event on the "original" page that refreshes the control that lists your uploaded files 3. On the page thats opened via window.open(), process your uploads, and at the end, write out a...
  7. adamroof

    Dropdown fires, but nothing changes??

    Ok, 1. I think you need to change Dim SortBy As String = DropDownList1.Text to Dim SortBy As String = DropDownList1.SelectedItem.Text 2. Are you manually populating the DropDown (in HTML like you posted)? Check that its not getting rebound on postback or page load 3. Output the results of...
  8. adamroof

    Dropdown fires, but nothing changes??

    Can you remove the Handles and just place the event in your HTML to see if it works there? ...OnSelectedIndexChanged="DropDownList1_TextChanged" AutoPostBack="true">
  9. adamroof

    DropDownList in grid

    I think you need to check that the dropdown is not getting rebound after your submit which would actually reset the selectedindex back to 0. How are you populating the dropdown initially? SqlDataSource? or in your rowdatabound? Also, been a while since i CType'd, but cant you just do this...
  10. adamroof

    why is asp:requiredfieldvalidator leaving a gap?

    Not sure if its the same, but i think i had a similar issue, couldn't figure it out completely, but my workaround was to actually put the html inside the error message ErrorMessage="Status is Required" to ErrorMessage="<br/>Status is Required" (and remove the <br/> in front of your...
  11. adamroof

    Service logging PowerEvent

    Woot! "CanHandlePowerEvent = false;
  12. adamroof

    Service logging PowerEvent

    Hi, I have a standard scheduling service built from VS2008 and my actions are working ok, however my app event log keeps logging "PowerEvent handled successfully by the service" from 30 seconds to 8 minutes apart at random. The service schedule is coded to only execute tasks every 15 minutes...
  13. adamroof

    Sending Follow Up Reminders

    I dont understand. I wan't to, and i am interested, however, i dont get how to populate a class with data and then use it in a loop. It did help me come up with a concept to create a solution to my current situation. Maybe you can help me implement/improve into the class structure? 1. Create a...
  14. adamroof

    Sending Follow Up Reminders

    Can you elaborate a little on your class implementation? Populate users from db that have follow ups, then populate class FollowUps, then how would i create the listing from within the foreach(user)? I already have the emailing and a service running and timed and this will be in addition to...
  15. adamroof

    Sending Follow Up Reminders

    Hi all, I have a contact database, and i'm trying to generate an email reminder to "Owners" of items they have flagged for follow up. It could be multiple items from multiple contacts per owner and could be for many owners. I am struggling with the concept to send a group of follow ups to the...
  16. adamroof

    windows service calling web service auth

    Hi, i have built my first service to attempt to schedule things, but i get HTTP 401 Unauthorized during the call to the webservice. How do i allow the service to consume the webservice with the current logged on domain account? Thats where the problem is i believe, and where i am confused. Do i...
  17. adamroof

    Global asax redirect and log

    or... 4. Your primary if statement actually isnt resulting true as you thought it should. (actually would fall under your #3) The above code works as designed. We have about 20 domain names. The original 5 we had our hosting provider create redirects for us on the IIS server itself many moons...
  18. adamroof

    Global asax redirect and log

    Am i missing something? The redirects still work, but the db proc doesnt seem to be executing. Which is why i am wondering if im not connected to the db at this point. The similar visit log call on the master page works with the same call to my db helper protected void...
  19. adamroof

    Global asax redirect and log

    Hi tektippers, I have a check and redirect for www in the global.asax so that all pages start with http://www.domain.com, not http://domain.com. It also ensures that many of our domains we have registered get redirected to our main domain name. My question is how can i log the original source...
  20. adamroof

    DB Source Control?

    Perfect, thanks! I knew i couldnt be the only one with the same question, but my intergoogle skills failed me on the search. This is so true even for the single developer environments! SVN along with the SQL compare seems to be a magical solution, at least then i can diff the scripts! I...

Part and Inventory Search

Back
Top