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. regulardude

    Install a Local Report Server and Remote Report Server Database

    bburnell, Thanks for the link, but this isn't what I was asking about.
  2. regulardude

    Install a Local Report Server and Remote Report Server Database

    I have two specific questions about Reporting Services 2005. Both questions have to do with "Install a Local Report Server and Remote Report Server Database". 1. Can this scenario be done without the two servers being part of a domain, same domain, just local servers? 2. Can this scenario be...
  3. regulardude

    configure dsl modem for another isp

    Can anyone help me configure a Westell 6100 dsl modem, that I originally got from BellSouth/ATT to work with Earthlink? I there a way to flash the firmware to get rid of BellSouth/ATT information and configuration pages? Thanks in advance
  4. regulardude

    forms authentication

    lisat76, Thanks for the input. I need some help from someone who has tried to implement the Forms Authententication for SSRS. Have you tried to implement this?
  5. regulardude

    forms authentication

    Having a little hiccup trying to get Forms Authentication working with SSRS. Got the Forms Login and registered the user, but now I get an error when I try to login. Tried debuging but didn't help much. Here is the error: Server Error in '/Reports' Application...
  6. regulardude

    report builder login

    sort of got it working playing around (some more) with the IIS Directory Security settings on the Reports and the ReportServer and ReportServer/Report Builder folders/subfolder. I am not getting prompted for a username or password. I am not suggesting this is the correct way to go about it...
  7. regulardude

    report builder login

    I have set up SSRS so that I can access it through a web browser via http://<serverip>/Reports I get the Report Manager screen and I get the Report Builder icon, which I want specifically. I click on the Report Builder icon and it launches it fine and then I get prompted for a username and...
  8. regulardude

    passing open arguments from one form instance to anther

    bledazemi, haven't tried it out yet, but found another link, thought you might be interested. http://www.codeproject.com/KB/cs/CSSIApp.aspx
  9. regulardude

    passing open arguments from one form instance to anther

    Hi bledazemi, Thank you for your insight. I will try this out asap. In the meantime, here is a star.
  10. regulardude

    passing open arguments from one form instance to anther

    Hi, I am using the SingleInstanceApplication: WindowsFormsApplicationBase of the visual basic.dll in my c# application to get a single instance application. I have seen numerous articles http://msdn.microsoft.com/en-us/magazine/cc163741.aspx...
  11. regulardude

    combobox valuemember save

    Found the answer to my own question: myComboBox.DataBindings.Add("SelectedValue", BindingSource_LienData, "NameofFieldinDataSource");
  12. regulardude

    combobox valuemember save

    I have dynamically populated serveral comboboxes on the form load in this manner: // Populate Rating ComboBox ds_Lookups.dt_RatingRow newRatingRow = ds_Lookups.dt_Rating.Newdt_RatingRow(); newRatingRow.ID = "5"; newRatingRow.Description =...
  13. regulardude

    xml as datasource

    Hi, I am getting to where I need to be, but slow going, and thanks for all of the previous help. What I have so far... Form loads and checks to see if xml file exists, if it does, it loads into runtime dataset and binds to datagrid: private void Form1_Load(object sender, EventArgs e)...
  14. regulardude

    excel into dataset via xml

    jmeckley, I would prefer to transform the existing excel file into xml format and then fill the dataset. Any thoughts?
  15. regulardude

    excel into dataset via xml

    Hi, Trying to find the simplest way to import an excel file, in regular excel format, using the openfiledialog, into a untyped dataset. Steps: 1. Use openFileDialog to browse for excel file to import. 2. Code reads excel file into dataset using xml DataSet is untyped, schema varies from file...
  16. regulardude

    execute permissions

    Thanks MrDenny, I will work with this information. What is the difference between: /* CREATE A NEW ROLE */ CREATE ROLE db_executor /* GRANT EXECUTE TO THE ROLE */ GRANT EXECUTE TO db_executor And GRANT SELECT ON SCHEMA::SchemaName TO UserName Thanks again.
  17. regulardude

    execute permissions

    mrdenny, Thank you. Your response is what I have experienced thus far. So, since a lot of our stored procedures create tables and drop them, if you don't mind, can you share your method for giving just the right amount of permissions, in this circumstance? Thanks again.
  18. regulardude

    execute permissions

    Hi, I have a couple of questions regarding permissions and security. First, I have read many times, that a wise practice is to give your permissions through stored procedures, in other words, give execute permissions on stored procedures, and limit or do not allow direct access to tables and...

Part and Inventory Search

Back
Top