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 bkrike 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. YvonneTsang

    DataGridView CellRight click

    Is there an easy way to program the right click for a cell? I want to set up my own right click options for the right click but cant figure out how to do it.
  2. YvonneTsang

    Unselectable datagridview?

    Hi I am querying my database for a series of records. The number of records displayed is variable based on the search criteria. I am currently loading it into a datagridview and dynamically adding columns for each record that is found(the numbers of rows will always stay the same). This is a...
  3. YvonneTsang

    DataGrid Update to Access 2007 problem

    I am working on a simple inventory problem and I am having some problems with the update portion. My query consists of an Inner Join between 2 tables( item details and the inventory). There is a relationship between the 2 tables The information loads into the DataGrid properly and I can edit...
  4. YvonneTsang

    Problem after turning off replication

    I am having some major issues regarding turning off replication I turn off my replication and there seems to be all sorts of triggers, views, and sp procedures that are left behind. Is there a way to clean all this up? I used the delete publication button in the Enterprise Manager GUI to remove...
  5. YvonneTsang

    Problem wiht my Identity column!!

    I am having a major problem with my identity column after I did a DTS import and a snapshot replication. What occured was that I DTS'd a bunch of records into my table, restarted my snap shot agent to populate all of my changes, and validated my subscription. The Agent pushed my new snapshot...
  6. YvonneTsang

    document.onscroll problem with the mouse wheel!! help!

    I am having some problems with the wheel mouse and my document.onscroll. I have an image that I want to keep on the middle of the page(an arrow and some stuff). I use the document onscroll to move the image and the appropriate onclick event for it. The problem that occurs for me now is that...
  7. YvonneTsang

    Having problems with my Stream Reader

    I have a .NET dll that is registered for COM use(Regasm/gacutil). Inside here I need to read from a text file to get some settings for the application. The location of the text file can change(depending on where the application is installed). I am trying to determine how to get to my file...
  8. YvonneTsang

    Displaying Variables with HTML code in it?

    I have a variable that retrieves some HTML code and I want to output the literal version of the code onto the screen with a label or span. so if I get Yvonne<br>Tsang from the input. I want the span to display Yvonne<br>Tsang not Yvonne Tsang How do I go about doing this??
  9. YvonneTsang

    Problem: Trying to include asp pages in my ASP.net page

    I have a few asp.net pages where I wish to include asp pages. The asp pages are just my old headers and footers for the page. These have not yet been converted over. They have a bunch of Response.Write and other such things Request.ServerVariables throughout them. I seem to get an error when I...
  10. YvonneTsang

    Problem setting up Transaction Replication

    I am having problems with setting up Transaction Replication. I am able to create the publication and the subscription with the wizards and that is fine. My problem is that the tables are not being sent/updated. It seems that the agents have never been started and when I choose to start them...
  11. YvonneTsang

    Class library Access denied error

    A few times a day I get the following Error Parser Error Message: Access is denied: 'ClassLibrary2'. It usually happens after I have run the application a few times(not simultaneously). I have to rebuild my class library and it seems to get rid of it most of the time or if I leave the computer...
  12. YvonneTsang

    Dynamically setting attribues for web controls

    I am trying to set the values for a text box dynamically. I want to be able to toggle TextMode from multiline to singleLine and do it for other properties. It doesn't seem to want to let me and there is no constructor for these fields. How do I go about doing this?
  13. YvonneTsang

    Need help creating Dynamic web controls

    I an new to Asp.net and I need some help. In ASP I was able to create Dynamic controls on my page by having the ASP use Response.Write and the controls that I wanted. An example would be <Body> <% for i = 0 to count If Text Response.Write &quot; <input id=a type=textbox&quot...
  14. YvonneTsang

    Converting a string to DateTime

    Is there an easy way to convert a string to the DateTime type? I am retrieving the value from an SQL Database and I want to store it in a DateTime object. What is the easiest way to do this? Thanks in advance.
  15. YvonneTsang

    inserting a Double quote into a string

    I am having problems getting a double quote(&quot;) into a string. I thought the structure was string test = &quot;hi &quot;&quot;Tiger&quot;&quot; Woods&quot; to get hi Tiger Woods into my string. Am I mistaken? What is the proper syntax for C#
  16. YvonneTsang

    Dynamic attributes in a class?

    I was wondering if you are able to create a variant public variable in a class. I have a class that one of the variables can be set to one and only 1 of 4 different types/classes. Am I able to do this? Should I just have the other classes inherit from my main class? What is the easiest way to...
  17. YvonneTsang

    Variant Public variable in my class

    I was wondering if you are able to create a variant public variable in a class. I have a class that one of the variables can be set to one and only 1 of 4 different types/classes. Am I able to do this? Should I just have the other classes inherit from my main class? What is the easiest way to...
  18. YvonneTsang

    ADODB.recordset problem

    I was wondering if this has a maximum size. I am trying to transfer some data using XML and it works fine for most tables. I noticed tho with this one particularly large table, that it crashes when I try to open the recordset with the XML data. Can anyone help me on this?
  19. YvonneTsang

    Word Web Component??

    I know there are Office web components for Excel and Access(mainly for tables). I was wondering if there was one for Word. I want a text editor that can do bolding, fonts as well as creating a table and bold,italicing fonts in the table. Is there another application tht I can use for this...
  20. YvonneTsang

    HTTP_REFERER not working!! HELP!!!

    I am trying to learn how to use HTTP_REFERER properly. I have a basic test site that is using it with the following code. <% ThisURL = Request.ServerVariables( &quot;URL&quot; ) PrevURL = Request.ServerVariables(&quot;http_referer&quot;) Response.Write( &quot;This URL = &quot; & ThisURL &...

Part and Inventory Search

Back
Top