CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: JACKWEBS

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    3
    Views
    1,563

    Re: visual studio vs kompozer?

    Other option is using Visio for wireframing but I'm not sure how to create stencils or templates.
  2. Replies
    3
    Views
    1,563

    visual studio vs kompozer?

    I need to make amock up of a webpage, is it easier to do this in kompozer or Visual Studio.
    I thought VS had drag and drop but it seems more complicated to build the webpage as it has to add...
  3. using PDF as the front end, connected to DB?

    Is it possible to use an Adobe PDF file as the front end connection to a database?
    I'm pretty sure this is a bad way of programming things but I have seen more and more ocntrolled forms recently and...
  4. Replies
    7
    Views
    1,441

    Re: best books for C#?

    Microsoft Visual C# 2010 Step by Step Book?

    What would I get after that or is that enough?
  5. Replies
    7
    Views
    1,441

    Re: best books for C#?

    and that costs money but sharpdevelop is free.
    Is Sharpdevelop a good simulation for VS?
  6. Replies
    7
    Views
    1,441

    Re: best books for C#?

    But that will primarily be aimed at Visual Studio .NET, which I don't have. I have SharpDevelop.
  7. Replies
    7
    Views
    1,441

    best books for C#?

    What are the best books to read to learn C#?
    I have programming experience and have actually done some stuff in C# before but want a structured book.
    I found the following but the seem about 5...
  8. Replies
    1
    Views
    676

    PHP rewrite htaccess for specific uRL?

    I have some domains that all point to the same backend folder. However, I would like to keep the URL the same.
    For example, if someone accesses mysite.com or mysite.eu or mysite.net they will remain...
  9. Replies
    0
    Views
    806

    .reg safe autoinstaller

    I have a .reg file, which is available as a download from my website which changes the timeout setting in IE to run a series of stored procedures on the SQL server without timing out.

    I don't...
  10. Replies
    2
    Views
    1,558

    Re: create dynamic map

    Can't it be done without tables using VML or something like that?
    Or div arrangements...

    Just think it could get very confusing using tables
  11. Replies
    3
    Views
    942

    Re: nothing in $_POST array

    I think the problem lies in the form somewhere or the submission of it but I can't see it.
    checklogin.php is fine as I wouldn't have access to the page at all. For safety, I have commented it out...
  12. Replies
    3
    Views
    942

    nothing in $_POST array

    Nothing appear in the query_creditcontroller array when I run this code. There's a bif javascript that submits it. Also, I can't use get for some reason, the javascript doesn't like it?



    <?php...
  13. Replies
    7
    Views
    981

    Re: find 6th working day

    Perfect. Thanks very much.
    I'll make some slight alterations to get the day numbers...
  14. Replies
    7
    Views
    981

    Re: find 6th working day

    Example #1 doesn't have any working day code in it ?
    There is some working day code further down but only to find the number of working days in a month, which is a calculation...
  15. Replies
    7
    Views
    981

    Re: find 6th working day

    Yes, but date() doesn't have a built in check for working days.
    I assume I am going to have to code and check the actual day:
    if day == 6 and saturday or sunday then day++
    then do a recursive loop...
  16. Replies
    7
    Views
    981

    find 6th working day

    Any ideas on how I can find the 6th working day of each month?
    I don't want to put in a check for if Monday, else if Tuesday advance 1 day, etc. although maybe this is the only way?
  17. Replies
    2
    Views
    1,558

    create dynamic map

    I need to create dynamic map from some structure data. For example:


    Infrastructure SY410 SY414 ZACY
    Regions SY610 ZALY
    Infrastructure SY410 ZAVI
    Management SY340 SY344 ZBBC...
  18. Replies
    1
    Views
    1,030

    something wrong with iteration

    Can anyone see anything wrong with this excerpt of code.
    When I use alert(workingstructurewithdivid.length);
    I get 111 but it only seems to be going through the code once and stopping

    Edit: I'm...
  19. Replies
    2
    Views
    922

    Re: tr in wrong place?

    yeah, I know it's the old fashioned way to do it but I copied it from a template!
    I found what it was though, there was a tag in there style='white-space: pre' that only FF was picking up
  20. Replies
    2
    Views
    922

    tr in wrong place?

    Hi
    I have a page that appears correctly in IE but in FF the top right appears incorrectly.
    The Home | Fixtures | Contact section appears to be one row down?
    ANy ideas why?
    I have run it through a...
  21. Replies
    23
    Views
    11,314

    Re: remove duplicates and sort array

    So, how do I compare the values and remove duplicates?
    When I pass in the array as it is, how does the function know which values to compare in the 2nd dimension? I don't think it can.
    So, I can...
  22. Replies
    23
    Views
    11,314

    Re: remove duplicates and sort array

    Yes.
    My point is that when i try to use unique(array[0]) on this array:


    var testArray = [
    [3, "Infrastructure", "SY400", "SY410", "SY414", "ZACY"], // this whole line is testArray[0]
    [5,...
  23. Replies
    23
    Views
    11,314

    Re: remove duplicates and sort array

    No, just one array.
    If I understand correctly your code is supposed to loop through the relevant dimension of the array and return an array with out the duplicates.
    Either I am passing in the index...
  24. Replies
    23
    Views
    11,314

    Re: remove duplicates and sort array

    I appreciate the advice but maybe we're at crossed paths.
    I tried your example code and it only printed one value.

    row column1 column2
    0 A B
    1 A B
    2 B ...
  25. Replies
    23
    Views
    11,314

    Re: remove duplicates and sort array

    Something weird is definitely happening here.
    When I run it, it seems to only list 1 row, the number 3.
    Is that because I only use this line once?
    workingstructure[0] = unique(structure[0],false);...
Results 1 to 25 of 136
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured