7 Solved Topics

Remove Filter
Member Avatar for
Member Avatar for kent.johnstone_1

Hi, What is the difference between "__inline__" and "inline"? I have programs with both. "inline" works, "__inline__" has an error "Unable to resolve identifier __inline__" thanks

Member Avatar for kent.johnstone_1
0
318
Member Avatar for ashu.dasgupta
Member Avatar for delta_frost

Which of the following code is likely to take less time to get executed? /*Format 0*/ main(){ int a=3,b=5; printf("%d",a*b); } /*Format 1*/ int mult(int a,int b){ return a*b; } main(){ printf("%d",mult(3,5)); } /*Format 2*/ inline int mult(int a,int b){ return a*b; } main(){ printf("%d",mult(3,5)); } As of now,I understand …

Member Avatar for deceptikon
0
187
Member Avatar for klemme

Hey, I have a question on how to make an inline style to this..: [CODE] $sqlCommand = "SELECT * FROM pages WHERE subjectid='" . $subjectid . "' AND showing='1' ORDER BY pos ASC"; //*** $query = mysqli_query($myConnection, $sqlCommand) or die (mysqli_error()); $PageMenuDisplay = ''; while ($row = mysqli_fetch_array($query)) { $pid …

Member Avatar for klemme
0
156
Member Avatar for dwlamb

Good day, I've run into a problem with list items displayed inline (i.e., horizontally) using Safari for Windows. If you [URL="http://dwlamb.com/cssproblem/loggedin.html"]follow this link, you'll find an uploaded static version of the problem[/URL]. Viewing it in IE7-8 and Firefox (Windows & Linux), the page yields as it should. The 4 menu …

Member Avatar for dwlamb
0
228
Member Avatar for smariano77

Hi, this it's my problem. I have a textBox and a label. In the textbox an email address should be written. Then, when you click the label a inline popUp appears (this one to be more specific:[URL="http://orangoo.com/labs/GreyBox/"] http://orangoo.com/labs/GreyBox/[/URL] ) The thing is that I have to send the email address …

Member Avatar for smariano77
0
160
Member Avatar for nccsbim071

Hi Please tell vb.net equivalent of following method: [CODE=C#] private void LookForUpdates() { System.Threading.ThreadStart timerThreadStart = new System.Threading.ThreadStart(delegate() { sua = new ShowUpdatAvailable(); DelGetUpdateArgs delGetUpdateArgs = new DelGetUpdateArgs(this.GetUpdateArgs); sua.GetUpdateArgs = delGetUpdateArgs; sua.StartLookingForUpdate(); }); timerThread = new System.Threading.Thread(timerThreadStart); timerThread.Start(); } [/CODE] I tried using C# to VB.NET code converter which gave …

Member Avatar for nccsbim071
0
941

The End.