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

    Store proc DeadLock

    I have store proc giving me deadlock issue looks like I need to work with lock hinds if some on can look at and help me to solve the problem ALTER PROCEDURE [dbo].[sp_CNVRT_GetNextNewJob] @nJob_ID AS BIGINT OUTPUT, @sSrcFileSpec AS NVARCHAR(260) OUTPUT, @sDestFileSpec AS NVARCHAR(260)...
  2. deejayAr

    linq drill down statement

    How can I write this to linq first I'm doing XElement root = doc.MainDocumentPart.GetXDocument().Root; then var query = from c in root.Descendants(W.p) select c; then foreach (XElement p in query) { XElement pElement = p.Descendants(w + "pStyle").FirstOrDefault() ...
  3. deejayAr

    open xml document extract style

    <w:P>.....<w:P> <w:p w:rsidR="00C72E37" w:rsidRDefault="00A27CF8" w:rsidP="00A27CF8"> <w:pPr> <w:pStyle w:val="Description"/> </w:pPr> <w:r w:rsidRPr="00686C21"> <w:rPr> <w:rStyle w:val="Habit"/> </w:rPr> <w:t>Trees, shrubs, lianas or herbaceous vines</w:t> </w:r> <w:p...
  4. deejayAr

    loop through xdocument openxml

    <w:P>.....<w:P> <w:p w:rsidR="00C72E37" w:rsidRDefault="00A27CF8" w:rsidP="00A27CF8"> <w:pPr> <w:pStyle w:val="Description"/> </w:pPr> <w:r w:rsidRPr="00686C21"> <w:rPr> <w:rStyle w:val="Habit"/> </w:rPr> <w:t>Trees, shrubs, lianas or herbaceous vines</w:t> </w:r> <w:p...
  5. deejayAr

    unique field to set the primary key

    I need to index the database but there is not a unique field to set the primary key on. All fields have duplicate values in them. If I do not index the database then trying to move around in the database is very slow. . All of the fields have duplicated data. any one has ideas how to do it thanks
  6. deejayAr

    regex help

    I have a column in database "unittype" it contains string value like "units" "minutes" I'm unig textbox.text = unittype I want to use regex like textbox.text = regex.replace(unittype) to set unittype value from units or minutes to Unit(s) or Minute(s) for display thanks,
  7. deejayAr

    How to get Last week

    I have two input fields and want to fill these fields as start last week=== Last week Monday's date end last week == last week sunday's date any help would be nice... thank you...
  8. deejayAr

    Removing html taq from string

    I have a string <ul id="workFlowList"> <li id="Daily"><h4 >Daily Tasks</h4><ul id="Daily_Sortable_List" name="Daily_Sortable_List" style="cursor: move"><li id="D_li_1" class="messages "><label class="cbl" for="D_chk_1"><input class="Tasks" TaskId="1" type="checkbox" name="D_chk_1" id="D_chk_1"...
  9. deejayAr

    refactor the store proc

    can any one help me to refactor this store proc it seems to me very ugly ALTER PROCEDURE [dbo].[SearchTransactions] @SiteId varchar(4) , @ProviderId int , @PatientFirstName varchar(35) , @PatientLastName varchar(60) , @UnsentTransactionsOnly bit , @GEDIPayerId varchar(10) ...
  10. deejayAr

    reg ex first two char

    can any one help me I need regex to find first 2 character in word (string) thanks
  11. deejayAr

    jquery read only

    I'm trying to use jquery readonly plugin to make all input in div if (!User.GetWebUser().Permissions.CheckPerm("View/Retrieve RTPA Info")) $('div.divMemberLookup :input').readonly(true); I'm very new to jquery how to do this stuff any help would be appriciated
  12. deejayAr

    trigger to increment data number

    I have scenario I want to save the data into a Name field of give table First time it save the name if second I provide same name I want to check if new name is already exist then triger should save new name as name 1 and for next save if name is name 1 it should save as name 2 egc.... my...
  13. deejayAr

    String pattern search

    Hi I have string like insert into FaultEvent select id as object_id, ${eventType} as event_type_id, current_timestamp as timestamp from Ahu((returnAirDewPointTemperature > (returnAirDewPointTemperatureSetpoint + ${upperDeadband})) or (returnAirDewPointTemperature <...
  14. deejayAr

    class to data

    I'm have classes and need to make data tables as follow Class 1 public class EventType { public String Id { get; private set; } public int Severity { get; set; } public EventTypeTemplate Template { get; set; } public IDictionary<String, String> Params { get; set; } public...
  15. deejayAr

    browser does not show up

    I have iis7 I install wcf and when I right click *.svc a drop down shows when I choose browse it does not work can any one help me what is going wrong with iis thanks,
  16. deejayAr

    regular expression

    How can I write regular expression that replace https://localhost/Sm.Services/BatchService.svc/invoke to http://localhost:20001/Sm.Services/BatchService/invoke any help will be nice thanks,
  17. deejayAr

    httpProxy

    I have to write a small stuff that accept a url: like "www.mywebside.com/otherside.html" myside url address is www.mywebside.com and it should redirect this request to "otherside.html" is there any sample that any one share with thanks,
  18. deejayAr

    UserControl to Parent page's Control

    Hi, Hope some one help me fast I need javasript for following scenario I have one aspform Form1.aspx has two controls Control1.ascx and Control2.ascx Control2.ascx visbility = false Now I want Control2.ascx visbilty = true when I click add button in Control1.ascx any suggession Thanks
  19. deejayAr

    open new windows from code behind

    Hi, I need to open new window from code behind with out opening open a windows I just want the return value weather window open successfull or error any suggesstion thanks,
  20. deejayAr

    VS2008 framwork 3.0 AJAX

    I want to use AJAX Extensions in .NET Framework 3.0 (VS 2008) any suggesssion would be helpfull. thanks,

Part and Inventory Search

Back
Top