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 Chriss Miller 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: M8KWR
  • Content: Threads
  • Order by date
  1. M8KWR

    Update Panel and Javascript

    Hi I am not so good with javascripts. I have a page where I have added reference to javascript file eg <script src="../js/custom.js"></script> I have an update panel that I need to refresh, but in there is elements that rely on the above JavaScript file to render chart controls etc - but on...
  2. M8KWR

    Get Facebook Email Address

    Hopefully the right section to post this question! I am using the following script <script> window.fbAsyncInit = function () { FB.init({ appId: 'XXXXXXXXXXXXXXXXX', // App ID status: true, // check login status cookie: true, // enable cookies to...
  3. M8KWR

    Displaying Properties on a page

    Hopefully a simple questions I have got a property Public ReadOnly Property Test() As String Get Return "Hello World" End Get End Property I am trying to display this on webpage by using <%# Test.ToString%> But it is not working. Any help/assistance...
  4. M8KWR

    C Sharp masterpage code not running twice

    Hopefully a simple one! I have some code on the page_load on the masterpage. I need this to run everytime a page using the masterpage is loaded; but this code only seems to run once! What can I do to fix it many thanks
  5. M8KWR

    Pass Database Name to a Function and setting the database to query

    I need to pass 2 parameters to a function, one with be a guid I use to query a table to get the database I need to look in, then other will be another guid value I need to find the description of. I am trying to do something like this: Create Function [dbo].[get_Description] (@DB_GUID...
  6. M8KWR

    SQL Nested Select Statements - Combining Queries

    I am trying to combined to queries. This is my first SELECT dbo_Campaign.Campaign_Name, dbo_Drop_Downs.Description, dbo_History.History_Guid, dbo_Drop_Downs.Order_Value FROM (dbo_Campaign INNER JOIN dbo_History ON dbo_Campaign.Campaign_Guid = dbo_History.Campaign_Guid) INNER JOIN...
  7. M8KWR

    Postback not fetching correct data

    Hi, I have a webpage with 1 textbox, which is populated onload, with "TEST DATA" this is changed to "NEW DATA" on a button click (in code), when querying the textbox text value, it returns "TEST DATA", and not "NEW DATA" which it has been changed to. I am unsure what is going on. Any help...
  8. M8KWR

    Importing, Exporting and Cross Referencing data

    This is a complete newbie questions, so excuse me if its been answered before; just looking for a very quick answer, and this is the best place for that, without me speaking to sales people trying to sell me a solution. What is the best way to export data, change this data, and then import it...
  9. M8KWR

    Style Background image ontop of image

    I have a table cell which I am applying a style to. This style has a background image. Then I require another image going into that same tablecell. But what I am looking to do is make the tablecell style's background image be ontop of the image that I put into the cell. The reason for this I...
  10. M8KWR

    Dynamically create table from other tables.

    Hi, Unsure how to explain what I am trying to achieve, so please bare with me. I have a table containing field information that are against certain internal campaigns. We use this to display the fields on our internal crm. What I am now trying to do is use this information within this table...
  11. M8KWR

    SQL Function, splitting text into individual rows (output)

    Hi, I have a cell with the following 1; 2; 3; 4; 5 I am looking at a way to output this along with an ID reference column, so it look something like this ID FIELD 1 1 1 2 1 3 1 4 1 5 I hope i have explained myself correctly. Many thanks for any help in advance.
  12. M8KWR

    Parameters not pulling in the correct information

    Hi, hope someone can help. I have got the following in the record selection formula If {?Lead_Code} ='xxxxxxxx' Then {main_report_test.Lead Code} like '*' Else {main_report_test.Lead Code} = {?Lead_Code} and If {?Company_Guid} ='xxxxxxxx' Then {main_report_test.Company_Guid} like '*'...
  13. M8KWR

    Adding a Radio button to a GridView at runtime

    I am trying to add a radio button to a datagrid that i am producing at runtime. This is because i want the user to select a single row, and then i have other buttons to do such things like edit delete etc. But i am struggling getting a radio button to show. If an when i do get it to show...
  14. M8KWR

    Stored Procedure to cross reference table

    I think i need a stored procedure, but unsure where to begin. I want to send 3 fields to it, lets called the F1, F2 and F3. These to be queries against another table in the same db, which will bring back multiple rows. With these rows i want to loop through each one and grab a text field, and...
  15. M8KWR

    SQL Slow in the morning

    We have developed an application internally that uses sql 2008. First thing in the morning the application runs very slow, takes about 45 seconds - 1 minute to move between records, or the application freezes. But, when the server is logged onto, where the sql database is housed, all things go...
  16. M8KWR

    SQL Install on Server 2008

    Unsure if this is the right place to post this, so i am posting it in several places. We have server 2008 standard installed We have an application that uses an sql db on this server. The first user (in the morning) to use the application has massive issues with moving records. To solve the...
  17. M8KWR

    Importing into Opportunities

    Does anyone know how i could potentially import records into the opp table, we currently use GM 6.6. I know the data structure that Gm uses, but it is creating the OPP_ID that is causing me the problem. I do not want to sync the data at all - if that helps with a solution. Many thanks
  18. M8KWR

    Using values from a subreport in the main report

    Hi, I have a main report with 1 sup-report. Within this sub-report i have formula field calculated from 2 fields. What i want to do is carry this formula field over to the main report so i can calculate a SUM value in certain other sections of the main report. I hope this makes sense. many...
  19. M8KWR

    Stored procedure in Query

    Hopefully this is simple question, which i am struggling with. I have a stored procedure (lets call is sp_1), this will only ever return 1 value. I want to use this within a normal query, so for example. Select Column1, Sp_1(Column2) as New_Column2 From Table1 Is this possible? Many thanks
  20. M8KWR

    Trigger - Insert

    Not really used triggers before, so please bare with me. I want to update a field in a table, every time that table has a new insert. From the row that is inserted, i want to take the value from the column (this will always be populated with something) Then query that against an sql...

Part and Inventory Search

Back
Top