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

    stl::list initialization problem

    Hi all, I want to initialize a static stl::list of strings with some predifined string values(hardcoded). I declared the list in my class like this: static const list<string> my_list; (I want to do something like static const list<string> my_list("VAL1","VAL2","VAL3","VAL4") but this is not...
  2. mariacri11

    2 dropdownlists in template columns

    Thank you! It was ok, but then I faced other problem: befor using this when pressing edit button in the grid the selected value of the region ddl was the same as that from the non editable item. I did this by using databinding but now it doesn't work. How can I achieve this again? And another...
  3. mariacri11

    2 dropdownlists in template columns

    I have an editable datagrid whith template columns. In two EditItemTemplates I have ddl. I want the user to select the country from the first ddl and then the second ddl to display only the regions from that country. I tried putting the code on the OnSelectedIndexChanged event of the first one...
  4. mariacri11

    editable grid and validation problem

    Thanks Rob! After trying to do this for a while I rconsidered using the effective control placed in the edititem template of my grid. And it worked. And it's easier. Cri
  5. mariacri11

    editable grid and validation problem

    Hello! Here is my problem: I have an editable datagrid with edititem templates. I want to validate the data entered into the grid using a RegularExpressionValidator, but I get this error: Exception Details: System.NullReferenceException: Object reference not set to an instance of an object...
  6. mariacri11

    pop-up calendar

    I want to extract a selected date from a calendar and not to display it on my window permanently. I tried to create a calendar object in the moment that I press a button but the calendar doesn't seem to apear. Still, it exists, as I can display the selected date. I thought maby someone was...
  7. mariacri11

    asp.net DataGrid with DropDownList error

    I have a page wich does the following: I select a value from a DropDownList and I press a button. The DataGrid displays values based on the selected value. It works fine until I select a value which shoult display less pages then the previous selection. In this case I get the following error...
  8. mariacri11

    Access Data Pages

    Same question. Bat I added a subject. I hope someone can help me with this problem: I am developing an aplication using Access Data Pages and SQL Server. Everithing works fine when usind wizards. I want to call a stored procedure so I created a button with the script: <SCRIPT language=vbscript...
  9. mariacri11

    I hope someone can help me with thi

    Thanks for the tip, but I don't need Access exemple. That is Basic I think. What I need is a script: vbscript or javascript or an explication why my script doesc't work.
  10. mariacri11

    I hope someone can help me with thi

    I hope someone can help me with this problem: I am developing an aplication using Access Data Pages and SQL Server. Everithing works fine when usind wizards. I want to call a stored procedure so I created a button with the script: <SCRIPT language=vbscript event=onclick for=buton>...
  11. mariacri11

    Access Data Pages

    I am developing an aplication usind data access pages and SQL Server. I want to execute a stored procedure so I have the code: <SCRIPT language=vbscript event=onclick for=bbb> sql1=&quot;execute p1&quot; MSODSC.Connection.Execute sqlsql1 </SCRIPT> The script doesn't seem to be proccessed. Does...
  12. mariacri11

    relative path in Oracle Developer

    Well, it doesn't. Mayby I need to do some settings first.
  13. mariacri11

    Display values in a field(wich has a lov) when navigateing

    Thank you, BJCooperIT, that really solved the problem. One problem would be that, on commit, all the records browsed are considered changed and are rewritten to the table.. Do you have a magic solution for this? Thank you.
  14. mariacri11

    relative path in Oracle Developer

    How ca I use relative path in attaching menus and calling forms or reports?
  15. mariacri11

    makeing a form executable

    I don't know how to make a aplication(a form or more)run independently, without having to open Oracle Forms every time. Please help me!
  16. mariacri11

    Report Builder - error: divizion by 0

    The error doesn't occur only after running one report. It can happen the first time I run a report or after running diferent reports.
  17. mariacri11

    Report Builder - error: divizion by 0

    Thanks, BJCopperIT, But I don't think the error has something to do with the data I handle in the report. Running the form 6-7 times work fine, and, without any change in data, the 8th time (an example - actually it happends random) it crashes with division by zero - *Windows* error - and...
  18. mariacri11

    Report Builder - error: divizion by 0

    Sometimes, when I run a report a error occurs: divizion by 0 or zomething like this. Then you can debug a oracle program with Visual C++ or so I think. The fact is that few times the report runs OK. I have this problem with many reports, not only one. I use Oracle Reports 6i
  19. mariacri11

    Display values in a field(wich has a lov) when navigateing

    This is the problem: I have a form for putting data into a table and one of the fields has a lov atached. The field reprezents a name You select the name from the lov and it returns this name to the field and a code to other field. But in the table I insert only the code. Everything goes ok when...
  20. mariacri11

    force user insert data as the format

    I have a field that must put data into a date field in a table. The user can put any characters and i want to force him to respect the date format.

Part and Inventory Search

Back
Top