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

  • Users: jsnunez
  • Order by date
  1. jsnunez

    Tab Copntrol for Asp.Net

    Founf this link with an explanation of how to add Tabstrip and multipages. http://msdn.microsoft.com/msdnmag/issues/03/02/ASPColumn/ thanks jsn
  2. jsnunez

    Tab Copntrol for Asp.Net

    hi all, Is there any Web Tab Control for ASP.Net that will help me to create tabs similar to the ones that appear in this page: http://gis-it.fortlauderdale.gov/icp/map.asp thanks jose
  3. jsnunez

    How tocenter a popup window

    Hi all, How can I center a popup window ? How can check the screen resolution? here is the asp.net vb code I am using to popup the window: Dim popupScript As String = "<script language='javascript'>" & _ "window.open('dialogAttributes.aspx', 'Attributes', " & _ "'width=300...
  4. jsnunez

    change datagrid column size

    Hi I foud this code as an example but it does not work because my datagrid columns are not created in desing mode, they are created when the data is bound. http://weblogs.asp.net/despos/archive/2003/11/28/40186.aspx When it calls the function AdjustTextForDisplay(string text, int colIndex...
  5. jsnunez

    change datagrid column size

    Hi all, I created a datagrid with autocolumnsize = yes. I am not defining the columns in design mode; but attaching a table frm a datasource. this means that the: - itemStyle-Wrap="True" is a default value and the text in some cells appears wrapped in several lines. I would like it to show...
  6. jsnunez

    Type Mismatch errormmessage, when sending an email

    Found it!!! For a reason that I do not know the Microsoft Outlook library was not pointing to the file C:\Program Files\Microsoft Office\Office11\msoutl.olb I had to brwopse to the library manually and it worked. thanks jsn
  7. jsnunez

    Type Mismatch errormmessage, when sending an email

    Hi all I wrote a small form to send emails in Access 2000, that calls Outlook. And in some workstations when the user clicks on send email button, it crashes with the following error message "Type Misnatch". In debug mode it points to the line: set myOutlook =...
  8. jsnunez

    Sort a table following thre primary key fields

    Hi all I have a table thas has three fields that are used a s a primary key. I would when I open the table to see the table sorted by those 3 fields First Field: Area Second Field: group Thrid field: number thanks jsn
  9. jsnunez

    How to read all the tables and exprt them

    Hi all I need to write a macro or a VB program that will read all the tabbles in my database and for every table it will export it into a text file. I have more tha 200 tables, how can I automate it thanks jsn
  10. jsnunez

    NewID = lastrecord ID + 1

    I mean examples in how to inmcrease the ID value using a trigger thanks jsn
  11. jsnunez

    NewID = lastrecord ID + 1

    HOW? Could you please send me some examples thanks jsn
  12. jsnunez

    NewID = lastrecord ID + 1

    Hi I had a big problem after transferring this work ticket table from one database to another, it was resequenced. I am not using an autoincrease field as key field, I want to increaes it manually. Is there a way to increase it in a trigger? thanks jsn
  13. jsnunez

    NewID = lastrecord ID + 1

    As far as I understood, identity column increases automatically, but I had some issues transferring a table with an identity column is re-sequenced. Also it is a general advice to do not use identity fields as primary keys. jsn
  14. jsnunez

    NewID = lastrecord ID + 1

    Hi all I have a table that when a new record is added, the key must be the previous record key + 1 I am having probelms when 2 or more users add new records at the same time. Is ther a way to create a trigger that will populate the key fiedl for the new record with the key of the last record...
  15. jsnunez

    How can I audit a table

    Thanks I have found this example very useful http://www.devx.com/dbzone/Article/7939/0/page/2 jsn
  16. jsnunez

    How can I audit a table

    Hi all For a reason that I do not know I have a table in Ms Sql 2000 that appears every morning empty, without records. Is there a way to write a trigger, that will allow me to audit this table, checking when and who deleted the records? thanks jsn
  17. jsnunez

    Outlook.Application with user intervention

    Hi sll. I am using this code to send email, and I need to force the user intervention. I want to open outlook and show the email, and the user should click on the send button, or cancel the email. I already tryed DoCmd.SendObject , , acFormatTXT, varTo, , , stSubject, stText, -1 but it does...
  18. jsnunez

    Check that field is not blank

    Hi all In a adp form bounded to a table. What is the best way to check if a field has a value ? I have a field where the user enters dates. The field is required. The is not a default value, such as today's date. thanks Jose

Part and Inventory Search

Back
Top