Search:

Type: Posts; User: señorbadger

Page 1 of 9 1 2 3 4

Search: Search took 0.14 seconds.

  1. Re: [2.0] Resolve Namespace Library Location

    OK thanks for your help. I'll just leave it. Thanks again
  2. Re: [2.0] Resolve Namespace Library Location

    Thanks for clearing that up. What i'd like to do is from the reference in the project (Xml is below) is find out what library it is that's actaully being referenced.
    <Reference...
  3. [2.0] Resolve Namespace Library Location

    Hello! I have a quick question, im trying to write a tool that parses a csproj / vbproj file. when it gets to what libraries are referenced i wanted to get the file the namespace belongs to.

    EG:...
  4. Replies
    4
    Views
    562

    Re: Exe with Plugins (Load/Unload)

    Hi, found a good article on CodeProject.com for plugin architecture, i've used it in a few applications.

    http://www.codeproject.com/csharp/c__plugin_architecture.asp

    Im really sorry just...
  5. Replies
    6
    Views
    705

    Re: Writing Something In MS Word

    if you want to write to word without depending on office look at WordML, docx formats. they work for word 2003 onwards but are essentially just writing XML files.
  6. Re: Regular Expressions Ignoring 1st Match

    After careful thought i've realised that this isnt what i need, since the 1st instance of the - may actually need removing, Mod's feel free to delete this thread sorry for wasting time
  7. Re: Regular Expressions Ignoring 1st Match

    Thanks for the reply, the manipulation is done in Javascript but i was looking for a regular expression pattern rather than using string manipulation. I could use indexOf, substring etc but im trying...
  8. Regular Expressions Ignoring 1st Match (Resolved)

    Im trying to make a regular expression to modify a string like below...

    Input: 05-0218 C1-AD-0-YN -01
    Output: 05-0218 C1 AD 0 YN 01

    So basically i want to remove all hypen's accept the first...
  9. Replies
    4
    Views
    567

    Re: IIS Application Pools DLL Directory >

    Ahh that's what the GAC is for :)
    Thanks a million! I googled the GAC and researched it a bit more

    spot on! thank you!
  10. Replies
    4
    Views
    567

    IIS Application Pools DLL Directory

    first of all sorry If i've got this in the wrong forum category...

    In my working environment I am dropping the DLL's produced from code behind ASP.NET into the Binary Directory...
  11. Replies
    9
    Views
    1,282

    Re: TextField disabled

    It wasn't set to resolved so i thought i'd give input
  12. Re: MS Access - Combine Values from two records of the same table

    Thanks for that, knew i forgot something!
  13. Re: MS Access - Combine Values from two records of the same table

    Couldn't you just inner join the table on another instance of itself

    say you had tblCustomer {ID, FirstName, SurName} and you wanted to retrieve all the duplicates wouldn't something like this do...
  14. Replies
    9
    Views
    1,282

    Re: TextField disabled

    I just use the following...

    Textfield
    <input type="text" id="txtData" value="" />

    Then for the javascript
    <script>
    function disableTxtData()
    {
    var txtData =...
  15. Replies
    3
    Views
    534

    Re: cant seem to call function

    Try calling the function on the body onload event? <body onload=""
  16. Replies
    2
    Views
    625

    Re: Port Forwarding

    Well you could create a TCPListener and try to listen on the port number you want, if it works ok then your fine and if it throws an exception it could mean the port is in use. Look up...
  17. Replies
    3
    Views
    543

    Re: Real-time HTML Filter???

    You could do this in javascript easily enough, there are plenty of these "look up" controls avaliable to download (javascript code templates) just google look up control javascript or something...
  18. HTTPWebRequest Mimic IE (Windows Authentication)

    Hello, just a quick question, im trying to log on to a page within our intranet that uses Windows Authentication to work out the current user and allows them into the system, (ASP.NET 1.1) I can't...
  19. Replies
    89
    Views
    44,346

    Re: Please Help Us To Save Ana

    Haven't used VBF very much in the past year, I can't afford much thanks to having to pay out on my car, but have put in $20, all the best and i hope she makes a speedy recovery
  20. Re: [Serious] Christmas wishes in your native language...

    Merry Christmas, may Santa not rob you blind!
  21. Re: MS SQL 2000 Phantom Relationship

    Thanks for that, i had a feeling it was but wanted someone to confirm it
  22. Replies
    6
    Views
    624

    Re: Access Table name ???

    Correct me if i'm wrong but i think that message is displayed incase you changed the data type, you shouldn't loose any data if your only renaming the field whether its the Primary Key or not.
    ...
  23. MS SQL 2000 Phantom Relationship [Resolved]

    This is just a general query, i've got 2 tables in a database that have no relationship to each other

    Project

    Project_UDF

    They both have a field called Project_ID and these 2 fields are the...
  24. Re: Multiple Queries One Result SQL Server 2000

    You are a star!!!! Thank you soo much!
  25. (Resolved) Multiple Queries One Result SQL Server 2000

    Hello, I have a problem with the following, below is a set of queries that do a similar task, they count up all of the invoices for each project that belong to an organisation (a client).

    My...
  26. Re: N-Tier and Parameter Queries - Best Practices

    My approach would be to have something like the following...

    Business Logic

    clsPerson[] getPeopleByName(string Name);
    (clsPerson is an entity class obj)
    DALC
    DataTable getPeopleByName(string...
  27. Re: SQL Group By DateTime (MS SQL Server 2000)

    Sorry My fault, i forgot to put distinct count on the 2nd query. works like a dream thank u!
  28. Re: SQL Group By DateTime (MS SQL Server 2000)

    no, contact_id is the primary key
    document_series_id can be a duplicate within document whether this could affect it?
  29. Re: SQL Group By DateTime (MS SQL Server 2000)

    Ace, nearly there but any ideas why the 2 following queries would not return the same values (add up the middle column of the 1st query and compare that)


    Declare @start DateTime
    Declare @end ...
  30. SQL Group By DateTime (MS SQL Server 2000) [Resolved]

    Hello, i am trying to write an SQL query to group by the date an item was published on a daily basis ie: desired result

    Name Count Date

    mark 1 30/10/2006
    bob ...
  31. Replies
    3
    Views
    667

    Re: Session State Problem

    Yeah i wanted to store it in a database but i have to request my boss every time i want to create a database table, and have to justify why etc. She would have declined it for sure so using the Cache...
  32. Replies
    3
    Views
    667

    Re: Session State Problem

    Sorry It was my own error, the key i provided back wasn't the same and when i fixed that another small problem (my own fault was caused).

    Basically using Cache is a way of doing it, Cache(ITEMKEY)...
  33. Replies
    3
    Views
    667

    Session State Problem

    Hello, I have a problem and was wondering if people could help

    My web application has a Controller class which contains an entitly class which is to be updated via AJAX over multiple postbacks, I...
  34. [2.0] C# Combining Collections Using AND

    Hello, I think this is more of a maths issue but here goes...

    I am trying to write a method where if i pass in a collection of a collection of "Customer" objects it will compare them by ID number...
  35. Re: need a .NET programmer with knowledge of Access database

    If you are still looking, please view my portfolio... http://www.samlad.org.uk or please contact me on contact<at>samlad.org.uk.

    My main experiences are C#, ASP, PHP, MySQL, MS Access & MSSQL,
  36. [RESOLVED] C# Internet Radio Application

    Hello I was wondering if anyone can help with my initial research, im hoping to create a client / server internet radio application.

    basically the server side will allow the user to stream a...
  37. Re: C on Cygwin using Gcc stat function {Resolved}

    yeah i guess had to do c last year at uni as well, but im so used to C#, java & php everything just takes 200 times longer.

    I think all you people that work with C through choice deserve a heck of...
  38. Re: C on Cygwin using Gcc stat function

    thank u, but my lecturer explained about the **argv today since its an array of strings. and he said the 2 stars are needed. will give it a shot

    WoW it worked thanks !
    ive decided i hate C C# all...
  39. C on Cygwin using Gcc stat function {Resolved}

    hello, excuse this work since im not that familiar with C but my university assignment says i must use it for this application.

    I have to make a application to copy files with confirm overwrites i...
  40. Replies
    4
    Views
    528

    Re: Calculate a specific date

    i think i have a solution

    the user will provide a start date so...

    eg: user enters "5/06/2005" (UK date)

    this is really in effcient

    my script can use mktime() to get the value for "next...
Results 1 to 40 of 340
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width