Skip to content
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    6 Posts
    0 Views
    L
    yes thanks for all help
  • Virtual Environment

    The Lounge python visual-studio tutorial question workspace
    6
    0 Votes
    6 Posts
    0 Views
    P
    We've been here before... Bugs and Suggestions[^] Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
  • 0 Votes
    2 Posts
    0 Views
    J
    . "the debugger doesn't tell me anything because this code compiles just fine" - random QA comment "Facebook is where you tell lies to your friends. Twitter is where you tell the truth to strangers." - chriselst "I don't drink any more... then again, I don't drink any less." - Mike Mullikins uncle
  • 0 Votes
    1 Posts
    2 Views
    No one has replied
  • 0 Votes
    7 Posts
    0 Views
    O
    Because that's how Microsoft has defined personal use since at least Windows 7.
  • conflicting types for 'uint32_t' issue

    C / C++ / MFC help workspace
    6
    0 Votes
    6 Posts
    0 Views
    L
    Then remove the one from XXX_Global.h.
  • conflicting types for 'uint32_t' issue

    ATL / WTL / STL help workspace
    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • what is OET Coaching

    Article Writing php com question workspace
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • 0 Votes
    2 Posts
    0 Views
    J
    . "the debugger doesn't tell me anything because this code compiles just fine" - random QA comment "Facebook is where you tell lies to your friends. Twitter is where you tell the truth to strangers." - chriselst "I don't drink any more... then again, I don't drink any less." - Mike Mullikins uncle
  • 0 Votes
    6 Posts
    0 Views
    J
    Patrick Skelton wrote: and being able to swap in/out different data providers without requiring any other changes Having spent decades working with data providers that is pipe dream. If the system evolves into any complexity then differences between systems will crop up that at best will exhibit problems that make at least one service provide behave in a less than optimal way compared to others. This can be minimized, but not eliminated, by the following 1. Very carefully review all requirements BEFORE committing to evaluate impact on data flows especially those that have any chance of involving performance (volume and size.) The impact must always be rigorously sized. 2. Have a custom data layer that STRICTLY enforces the data rules. 3. Do not allow any exceptions. If you allow even one exception then over time there will be more exceptions.
  • 0 Votes
    2 Posts
    0 Views
    C
    Article has gone. Member has been here 7 years but no other recorded interaction with the site. I've put them on my watch list
  • 0 Votes
    1 Posts
    3 Views
    No one has replied
  • Send Email using Classic ASP

    Web Development com workspace
    2
    0 Votes
    2 Posts
    0 Views
    L
    You have also posted this question at Send Email using Classic ASP - ASP.NET Discussion Boards[^]. Please do not repost.
  • Yoga clothes

    Article Writing com workspace
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • ViewModel Locator

    WPF wpf wcf com help workspace
    5
    0 Votes
    5 Posts
    11 Views
    K
    Thank you for both your answers. Working great now. If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
  • "My Workspace"

    Site Bugs / Suggestions tutorial learning workspace
    6
    0 Votes
    6 Posts
    0 Views
    C
    [This](https://www.codeproject.com/Forums/1939564/Where-I-am-Member-Photos) is probably the best for that. cheers Chris Maunder
  • 0 Votes
    10 Posts
    0 Views
    R
    //Try this procedure and manipulate it public void RewriteFile(string SourceFileFullName, string TargetFileFullName, string UnWantedFilterString = "") { //UnWantedFilterString variable allows a line to be eliminated in the target file if it is contained in the line, this can be fine-tuned depending on your need. //SourceFileFullName and TargetFileFullName should be full file path and name if (!File.Exists(SourceFileFullName)) { MessageBox.Show("Source File Does Not Exist, Confirm on the Disk."); return; } string CurrentLine = ""; string CurrentLineTrimedUcase = ""; string UnWantedFilterUpperTrimed = UnWantedFilterString.Trim().ToUpper(); //This is string of anything you do not want to eliminate a line try { StringBuilder sb2 = new StringBuilder(""); using (StreamReader sr = File.OpenText(SourceFileFullName)) { while ((CurrentLine = sr.ReadLine()) != null) { CurrentLineTrimedUcase = CurrentLine.Trim().ToUpper().Replace("\t", ""); //Avoid tabs, trim and change to upper case if (UnWantedFilterUpperTrimed == "") //Test for unwated Filter string { sb2.AppendLine(CurrentLine); // Append line string to StringBuilder if unwanted filter empty } else { if (CurrentLineTrimedUcase.IndexOf(UnWantedFilterUpperTrimed) < 0) { sb2.AppendLine(CurrentLine); // Only Append line string to StringBuilder if unwanted filter not in string } } } } if (sb2.Length == 0)//Empty file will not be written { MessageBox.Show("Empty File will not be re-written"); return; } //Delete target file if it exists if (File.Exists(TargetFileFullName)) { File.Delete(TargetFileFullName); } //Write file now using (StreamWriter sw = File.
  • Outlook is driving me crazy

    The Lounge com tools code-review learning workspace
    12
    0 Votes
    12 Posts
    0 Views
    Sander RosselS
    Rage wrote: here the grid: file:///C:/Users/sdt2bue/AppData/Local/Temp/2018_02_06_MuE_TVe_Entgelte_u_AVo.pdf I don't think I can access your C drive :D Rage wrote: salaries are more than 5k in Germany With such salaries freelancers are probably only slightly more expensive than employees. They still make more money than employees when all goes well, mostly because they have no social security (taxes) and they can deduct taxes. Freelancers are a huge problem here in the Netherlands by the way. Not all freelancers make a lot of money, but they also don't contribute to the social security taxes, so when they lose their job they have no financial buffer, but they also don't get social benefits. It's a huge risk because ultimately those people have to fall back on the minimum social security payment, which is even below minimum wage. Also, the social security benefits only work when everyone contributes, but with all those freelancers, less and less people are contributing. One of the reasons we have so many freelancers is because our laws make it nearly impossible and very expensive to fire employees. So, many employers just hire someone as a freelancer so they can let them go whenever they want. Not in IT, because IT staff is hard to come by and generally more expensive as a freelancer (which is why many IT staff is going freelance, which only worsens the problem). But postmen, for example, have all been laid off and hired back as low paid freelancer. Same in security and health sector. My cousin couldn't keep a job in security for more than three years (the maximum of temporary contracts an employer can give you before they have to hire you for an indefinite time). All his employers were satisfied, but they didn't want to risk hiring him so they laid him off for six months and then called him back for another three years. The problem with that is that it's almost impossible to get a mortgage if you don't have a contract for an indefinite time. He earned way more than his girlfriend, but when it came to the mortgage his salary was worth loose change. He switched to another sector altogether. And then there's another problem... When you hire a freelancer and they work for you exclusively, you may find that this freelancer now has all the same rights as an employee, but with his freelancer salary. That's why you don't hire freelancers directly, but always through some agency or