Search:

Type: Posts; User: alex_read

Page 1 of 13 1 2 3 4

Search: Search took 1.50 seconds.

  1. Thread: why NUnit?

    by alex_read
    Replies
    1
    Views
    33,761

    Re: why NUnit?

    You don't need that specifically - you can use any off-the-shelf unit testing framework or even create your own. NUnit is just one of the most widely used & better known targeted at .net development...
  2. Replies
    2
    Views
    2,440

    Re: NVMe SSD's

    Hi!

    No experience myself... but on youtube there's a fair few short 5min vids by LinusTechTips which explain what NVMe's are, where they fit in the HDD landscape & benefits/comparisons which you'd...
  3. Re: How To Set Microsoft Flexgrid ReadOnly Property to FALSE.

    You'd get many more views and replies if you post this in the C# forum.

    However... making a flexgrid editable requires recognising the position of the selected cell, positioning a hidden or...
  4. Re: simple script that asks for a password with inputbox/msgbox/net use

    It sounds as though this would be better served with a group policy or then domain logon script maybe......
  5. Replies
    3
    Views
    2,356

    Re: Buffers & security question

    Oh ok perfect - thanks both for the helpful advice & answers! :bigyello:
  6. Re: VBScript: how can i use win32 functions on script?

    Take a look at the msgbox function on MSDN - there is more than 1 argument that you can pass to it (i.e. you can pass the title in as well as the text to display - even icons if you need):...
  7. Replies
    3
    Views
    2,356

    Buffers & security question

    So it's been a loooooong time since I've properly done any Win32 API stuff. Years ago, samples like these (& my code too) were commonplace: http://allapi.mentalis.org/apilist/EnumPrinters.shtml# or...
  8. Re: outlook configuration at client machine

    Hmm, when I first learnt Exchange bits, it was way before the 2007 version when autodiscover was introduced. You could check this link out:...
  9. Replies
    6
    Views
    2,581

    Re: One more search functionality question

    Thanks for the speedy reply/replies all!

    @Brad: Hmm, I knew about the "view forum posts" - those 3x users have thousands & the post I was looking at was quite an old, non-recent one. On my Google...
  10. Replies
    6
    Views
    2,581

    One more search functionality question

    My situation: The other day I found a post which was amazingly useful & informative. At the time I did rate the post & give comments to that user but I sadly didn't subscribe to the thread & had some...
  11. Replies
    3
    Views
    1,826

    Re: How to disable Select Sheet Box

    This post should really be in the VBA forum. Also, you're comparing the current workbook which has code in (xlsm traditionally) with the xlsx files in a given folder - is that check/step needed?
    ...
  12. Replies
    2
    Views
    2,752

    Re: Advanced search (where noOfReplies==0)

    Oh ok so it's outside of the search. Thanks for the speedy answer - good to learn how this the filter can be done!
  13. Re: outlook configuration at client machine

    So this entry can either be the name of the server or an address.

    If you're specifying a server name, you might be able to specify it's local name (mailserverbert) or it's fully qualified domain...
  14. VS 2010 Re: Make Sql Connection by vb work in any Computer..

    I realise the bulk of this thread's been already answered, but I also wanted to mention another approach - maybe applicable and something you might want to consider here (it seems a little of this is...
  15. Replies
    2
    Views
    2,752

    Advanced search (where noOfReplies==0)

    Hi everyone,

    Is there a way to search for unanswered posts - those with a reply count of 0 (maybe of 1) via the search or advanced search page please?

    Thanks! :thumb:
  16. MsOf10 Re: match and mismatch of field names

    If I understand right, you don't want to show a messagebox for 1 field, but display one for ALL fields which are missing?

    In this case replace your messagebox and select case block with
    * a...
  17. Replies
    1
    Views
    1,205

    Re: row compare issue

    Well usually no-one on these forums will provide a complete sample or written application for you, but I can start with the hints/pointers*:

    (1) a non-programming way, in sheet3, enter into cell...
  18. Replies
    13
    Views
    5,613

    Re: runtime error 1004 VBA excel

    ok, whoops, please use clng() instead there then.
  19. Re: Another HomeGroup problem: Can't connect a Win.10 to existing Win.7 HomeGroup

    I've typically always setup networks manually without the homegroups wizards, but know a little about managing Windows domains & networking so might be able to help somehow here.

    Asking for a...
  20. Replies
    13
    Views
    5,613

    Re: runtime error 1004 VBA excel

    You need to enclose the empid in a numeric conversion - i.e. cint() for this to work.
  21. Re: VBA - Excel:If value What parameter in Find(What:=“value”) doesn't exist ,for all

    What your describing seems exactly what the VLOOKUP worksheet function does - if a value isn't found, the result is an #N/A. Are you sure you need VBA here?
  22. Replies
    15
    Views
    2,109

    MsOf10 Re: File Not Found Error Message

    You don't need to post all your Document1 code, but can you post the lines which (i) save Document2 and (ii) close Document2 please?
  23. Re: [Excel] Macro posting second image overwrites first

    This seems to work (oh except I'm not inserting a page break). Your main issue there is the use of the content.paste there which overwrites the whole doc rather than just pasting at a given...
  24. Re: Problem with min and max buttons on interface

    Just out of curiosity (I) will you be hiding the default form buttons for some reason or are you attempting some sort of MDI form setup here? Then also (ii) your code didn't immediately work for me -...
  25. Replies
    1
    Views
    2,196

    Re: virtual listview vba excel userform

    I'm not quite sure what you're asking here, but to be able to insert a listview control onto a userform, right click a blank, grey area of the toolbox then select "additional controls" from the popup...
  26. Replies
    13
    Views
    5,613

    Re: runtime error 1004 VBA excel

    ohhh good one, we have a same post - 2 different questions scenario going on? Ok thanks - yep I only responded to the OP without catching the date there! Thanks for pointing that out! :cool:
    ...
  27. Replies
    53
    Views
    21,089

    MsOf10 Re: INSERT INTO without field names

    Here's my 2 cents if I were approaching this problem.
    Temporarily store the destination table field names
    Temporarily store the source table field names
    Perform a lookup & marking/store the...
  28. Replies
    9
    Views
    2,503

    Re: Database in excel

    Yep it doesn't like a string, but it also doesn't like a VB date either & there's no WorksheetFunction.Date() option either. I'm not surprised you ran into problems here - the error message is...
  29. MsOf07 Re: Upgrading VB.NET projects that wked fine with MS Office XP to work w/ MS Office 2

    I don't have VS.Net installed but these posts detail how to get to that x86 build option (even if you're using a VS Express edition):...
  30. Replies
    13
    Views
    5,613

    Re: runtime error 1004 VBA excel

    This line falls above where counterPreviousVersion is acually defined - this variable looks to be emtpy & un-initialised...
  31. Replies
    13
    Views
    3,060

    Re: Copy & paste columns n times

    huh well would you look at that! I stand corrected - I only knocked up a similar sample with paste then just quickly looked up the pastespecial command after. Thanks for posting that - I've learnt...
  32. Replies
    4
    Views
    10,636

    Re: When to write the test specification

    I appreciate both the correction & getting to hear/learn different styles, so thanks for that one! :cool: I especially love the term RATS too just as a side note - one of the best things about being...
  33. Replies
    9
    Views
    2,503

    Re: Database in excel

    Excel isn't a database app, it's a spreadsheet one so you might be better off using Access here.

    1. What format are your reports in & how are you copying them?
    3. What format is your table in,...
  34. Re: Execution stops when opening dialog box inside IE for typing a file name

    In addition to LaVolpe's comments (as we'll need those too), what is the code behind your Metodo.Click button click please?
  35. Replies
    4
    Views
    10,636

    Re: When to write the test specification

    Completely agree - the draft should be started as early as possible as the project is being planned and before any code is written. Finalisation of the test specification (sometimes a master test...
  36. Replies
    12
    Views
    20,366

    Re: What testing tools to use?

    I'm sorry I'm late to the game here but can offer some helpful tips which relate both when you first posted this and are still relevant now. I'm guessing you're way beyond needing this anymore but...
  37. Thread: Testing

    by alex_read
    Replies
    3
    Views
    3,014

    Re: Testing

    One of the largest , most widely known sets of courses & exams is known as ISTQB. You can find the curriculum & what's covered at each level here: http://www.istqb.org/
  38. Replies
    2
    Views
    6,091

    Re: What is SOAPUI Testing

    Many automation test tools focus on testing of the frontend GUI side more. SOAPUI takes a different approach & reads the information being sent/received from the web server without having a UI...
  39. Replies
    1
    Views
    6,720

    Re: selenium-dotnet- help

    Pretty much your first step should likely be to pick a tool, download it then run through the beginner tutorial sections of the help files for that tool. For selenium, the help files are all online...
  40. Replies
    3
    Views
    24,718

    Re: How to test login scenarios ?

    system:
    8) page opens properly
    9) page can be viewed properly on different browsers
    10) symbol characters entered don't break the site
    11) the length of the values entered don't break the site...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width