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 strongm 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. deejayAr

    Store proc DeadLock

    I index Job_UID and it is working so far a while and then I through error again
  2. 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)...
  3. 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() ...
  4. deejayAr

    open xml document extract style

    this one is using csharp and needs to iterate through nodes thanks,
  5. deejayAr

    open xml document extract style

    cSharp
  6. 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...
  7. 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...
  8. 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
  9. deejayAr

    regex help

    any help would be nice
  10. 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,
  11. deejayAr

    How to get Last week

    Thank you very much FEHREKE, I really appreciate that you spare some time to help me.. Problem was in my end…. Now it is working...
  12. deejayAr

    How to get Last week

    IE and Firefox
  13. deejayAr

    How to get Last week

    var d = new Date(); d.setTime(d.getTime() - (d.getDay() ? d.getDay() : 7) * 24 * 60 * 60 * 1000); jQuery("#DateTo").datepicker("setDate", d); d.setTime(d.getTime() - 6 * 24 * 60 * 60 * 1000); jQuery("#DateFrom").datepicker("setDate", d); I have to support ie and foxpro as well thanks
  14. deejayAr

    How to get Last week

    Thank you very much for your reply but it is giving me start last week=== Last week thursday's date (02/02/2012). end last week == last week today's date (tuesday (02/07/2012). what I need start last week=== Last week Monday's date (start from Monday.. e.g 1/30/2012) end last week ==...
  15. 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...
  16. deejayAr

    Removing html taq from string

    I need to delete any <li>....</li> taq that contain <label>Real Time Payment Assurance</label> I couldn't find the right solution please help
  17. deejayAr

    Removing html taq from string

    I'm still un able to do that you mind to share some sample thanks,
  18. 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"...
  19. deejayAr

    refactor the store proc

    Qik3Coder then how to write this logic in your way IF @TypeOfDateSearch = 'Date Of Service' BEGIN IF @DateSearchFrom IS NOT NULL SET @SQL = @SQL + ' AND q.DateOfServiceFrom >= @DateSearchFrom' + CHAR(13) + CHAR(10); IF...

Part and Inventory Search

Back
Top