"I am still not out of ideas here, 4th version:"
Emm...what planet are you on AtW?
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Collapse
You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:
- You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
- You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
- If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
Logging in...
Previously on "something in VC++ MS Visual Studio bugging me ... do you know ?"
Collapse
-
It's no coincidence that .net rhymes with .tulipe...
Have you thought about learning 6502 assembly language?
Leave a comment:
-
Originally posted by messiahsomething in VC++ MS Visual Studio is bugging me ... do you know what the key short cut is that makes the cursor jump to the corresponding parenthesis of a compound statement in VC++ ?? even if the parenthesis pair is deeply nested ?
}
in VC6 it is ctrl+]
in VS .net depends on what mode you have it in
go to tools, options, environment, keyboard, type brace into the search box
Leave a comment:
-
I am still not out of ideas here, 4th version:
#define begin {
#define end }
void ExpectASarcasticOrSnottyReplyToThisEmail
begin
cout << "I love Jordan\n";
ExpectASarcasticOrSnottyReplyToThisEmail();
end
Leave a comment:
-
Hell, I am on a roll today, 3rd version:
void ExpectASarcasticOrSnottyReplyToThisEmail
{
cout << "I love Jordan\n";
ExpectASarcasticOrSnottyReplyToThisEmail();
}
Leave a comment:
-
You guys give up too easy, here is my second attempt to help:
void ExpectASarcasticOrSnottyReplyToThisEmail
{
// no brackets needed at all
for(;
cout << "I love Jordan\n";
}
Leave a comment:
-
Try this:
void ExpectASarcasticOrSnottyReplyToThisEmail
{
// no brackets needed for just one statement
if (true)
while (true)
{
if (true) // no brackets needed for just one statement
cout << "I love Jordan" << endl;
}
}
Leave a comment:
-
something in VC++ MS Visual Studio bugging me ... do you know ?
something in VC++ MS Visual Studio is bugging me ... do you know what the key short cut is that makes the cursor jump to the corresponding parenthesis of a compound statement in VC++ ?? even if the parenthesis pair is deeply nested ?
example :-
void ExpectASarcasticOrSnottyReplyToThisEmail
{
if (true)
{
while (true)
{
if (true)
{ // <--------------- cursor at opening parenthesis a).
cout << "I love Jordan" << endl;
} // corresponding clossing parenthesis b) in compound
statement.
}
}
}Tags: None
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Secondary NI threshold sinking to £5,000: a limited company director’s explainer Dec 24 09:51
- Reeves sets Spring Statement 2025 for March 26th Dec 23 09:18
- Spot the hidden contractor Dec 20 10:43
- Accounting for Contractors Dec 19 15:30
- Chartered Accountants with MarchMutual Dec 19 15:05
- Chartered Accountants with March Mutual Dec 19 15:05
- Chartered Accountants Dec 19 15:05
- Unfairly barred from contracting? Petrofac just paid the price Dec 19 09:43
- An IR35 case law look back: contractor must-knows for 2025-26 Dec 18 09:30
- A contractor’s Autumn Budget financial review Dec 17 10:59
Leave a comment: