Search results for query: *

  1. R

    Question Forms gone?

    Using VB.net 2010 Express Edition I am creating a inherited form from a parent and when I work on it for a while everything is fine. When I save and close and come back later all of a sudden all the forms that are inherited from the parent are whited out. Unable to drag controls onto the...
  2. R

    Character Symbols

    Great I will definitely go do that. Thanks for the help!
  3. R

    Character Symbols

    What about a MDI relationship, with multiple children?
  4. R

    Character Symbols

    I have added a menu item for an engineering app and the are going to be short cuts for special characters like the degree symbol and what not. How do I go about when they click on the menu item where ever the focus is add the degree symbol? Thank you!
  5. R

    Expand multi-line textbox

    This is what I ended up doing but does anyone know how to make this work with a text box. This is for textarea. Thanks! function resizeCommentsBox(sender) { a = sender.value.split('\n'); b = 1; for (x = 0;x < a.length...
  6. R

    Expand multi-line textbox

    I know from some research I will have to use java script so I don't have to refresh the page. Does anyone know of a way to do this in java script?
  7. R

    Trim not working any other suggestions?

    It could be, it is a client of mine that inputs all the data in the csv file. I tested the method that Cavar showed and it seems to be working nice. Thank you for the post!
  8. R

    Expand multi-line textbox

    Hey I have a situation where a comment box needs to expand instead of scroll. Is there any way to do that on a web form? Thank you to all that reply!
  9. R

    Trim not working any other suggestions?

    I have an excel file that I am uploading and adding to a database. The database column for the state allows only 2 characters. Well the excel files that have been coming in lately have had some extra space. When they do get uploaded they have that nice � character appended to the state which...
  10. R

    String Manipulation Needed

    I have an excel file that I am uploading and adding to a database. The database column for the state allows only 2 characters. Well the excel files that have been coming in lately have had some extra space. When they do get uploaded they have that nice � character appended to the state which...
  11. R

    Parse Strings

    I have a list of customer and I am using a view from a database to bring that list over. Using linq I am filtering a datagrid via criteria. But one of them is last 4 SSN numbers. I have a system where I can manipulate the data before it gets bound to the grid, so during that time is where I...
  12. R

    reporting within specified days

    I am creating a crystal report and having some mental blocks. I need to create a report for an accounting program and one of the reports is deposits within specified days. For example user will type in 6 and the report needs to display all the deposits needed from today to 6 days out. Is...
  13. R

    Triggers and views

    Thanks for the reply, what I ended up doing is modifying my CLR stored procedure and just copied that into the function and that worked out well. Am I right when I say nested stored procedures inside of functions will not run?
  14. R

    Triggers and views

    Stored Procedures and views Hey everyone, I have a complex crystal report I am writing and I thought it would be easier to create a view. This is the first time i have done it and was wondering if I can run a stored procedure in the view as a column. I have a stored procedure that does some...
  15. R

    Temp Files

    Yeah I think I am going to use a subfolder in the application root. Thinking it over that folder will already need access from the web user so setting up extra security isn't really a big deal. Thanks for all the help!
  16. R

    Temp Files

    The session.SessionID is a good way to go, thank you for that. Is there any way to access the asp.net temp folder with out specifying the path (a namespace or function)? I don't want to use the system temp folder. I basically want to minimize the amount of security changes I have to make to...
  17. R

    Temp Files

    I have a situation where I have to upload an Access database, convert the information to the SQL Server. Then delete the Access database (that was uploaded to the server, not the local copy). My question is there a way I can use the ASP.net temp folder with a unique ID to save the Access...
  18. R

    SQL Expression Field

    Rookie mistake, in my stored procedure I forgot to select the output value that I wanted (Quantity). Once I did that the reports started to display the value, it worked out nicely. Thanks for all the help. I really appreciate it.
  19. R

    Stored Procedures

    Thanks for the post. I am actually trying to connect to the stored procedure inside of crystal and getting it displayed in there. I need the parameters passed into the stored procedure to be linked to the details as it is looped through rows. I had a complicated quantity formula so I created...
  20. R

    Stored Procedures

    Just started to play around creating Crystal Reports with Stored Procedures. Not sure if this is allowed or not. But I have a stored procedure with a return value, is there any way or how can I display that value in the report? Thanks!
Back
Top