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!

Recent content by nickmollberg

  1. nickmollberg

    Where can I go for Reporting services Help?

    Is there such a thing as a datetimepicker I could use inside reporting services? I built the report in visual studio, but there are no datetime pickers in the tollset.
  2. nickmollberg

    Where can I go for Reporting services Help?

    I have some questions about SQL reporting services, anyone have suggestions on forums/newsgroups which might be helpful?
  3. nickmollberg

    Index was outside the bounds of the array...?

    This loop: for(int counter=0; counter <= tempArray.Length;counter++) { try { fdp.Parse( tempArray[counter], FormTypeSys, SectionSys, ScreenSys, QSys ); } catch( SqlException sqx ) { throw new FormDesignParserException( "Error executing SQL: " + sqx.Message...
  4. nickmollberg

    going line-by-line through a Multiline textbox

    Sorry, I'm not finding this attribute...
  5. nickmollberg

    going line-by-line through a Multiline textbox

    I have a big textbox (100 lines) that I need to read through, one line at a time. Basically, I need to pass it, one line at a time to a parsing method. I should just loop through it until I reach the end, I suppose. What would be the syntax to loop, line by line, through a texbox?
  6. nickmollberg

    Seperating the characters and numbers in a string

    Awesome! Perfect, thank you!
  7. nickmollberg

    Seperating the characters and numbers in a string

    Hello, This is remarkably simple I'm sure, but I need to seperate out the contents of a string. The string is "TestString1" And I need to parse this out into the characters, and the number. So, I'd like to end up with "TestString" and "1" This Could be any combination of text, followed by a...
  8. nickmollberg

    'Open dialog' option in a web form?

    In a windows form, you can use an 'open dialog' control... so, you could browse out for, then open a text file and have its contents displayed in a textbox if you wanted to. Is there similar functionality for a web form? I need to be able to, from the web form, click an 'open' button, then...
  9. nickmollberg

    Setting ImageUrl programatically

    hey pwilson, thanks for the post. I saw that, but I need to set this inside the C# code (so i can dynamically change the URL based on a number passed to the page when it opens), not the HTML. sorry, should have said something.
  10. nickmollberg

    Setting ImageUrl programatically

    Hello all, I'm trying to find the syntax for programatically setting the url of an image upon page load. Image1.ImageUrl = "http://myserver.com/1.jpg"; is the wrong syntax, and I can't seem to find how to set this attribute in C#. Any suggestions?
  11. nickmollberg

    SQL Triggers... a newbie howto question

    I need to create a trigger that does the following: When a user inserts or modifies a record in tableA, if a certain column 'ColStatus' is equal to 'Complete' then I need to change a value in tableB to reflect this. Can anybody point me to a good syntax example, or a howto for how I should go...
  12. nickmollberg

    &quot;Simple&quot; syntax question.

    if(Int32.Parse(sdr["CustNumber"].ToString()) == 155){} Worked just fine. What I really need is some massive source for source code examples. That, and lots more time with a c #book.
  13. nickmollberg

    &quot;Simple&quot; syntax question.

    I have a dataset, and am reading values out of it, binding them to controls. the if statement below worked fine when the column 'custnumber' was a varchar, but when converting it to a smallint, the code below no longer works (as one might imagine.) if(sdr[ "CustNumber" ] ).Equals( "155" ) ) {...
  14. nickmollberg

    How to use MessageBox.show in Web Application

    This doesn't seem to register either... nothing fires when I check the checkbox. Is it easier/better to do this in the HTML?
  15. nickmollberg

    &quot;OK/Cancel&quot; popup dialouge box?

    What can I use in place of this? java?

Part and Inventory Search

Back
Top