1
vote
5answers
302 views
Why can I not concatenate two strings and assign them to a symbol?
. . . as in this example:
helloworld.rb:1: syntax error, unexpected '=', expecting $end
:helloworld = "hello ".concat("world")
I thought if I use concat I'm modifying the string …
0
votes
1answer
24 views
CAtlNavigateData can not deal with special symbol such as +
CAtlNavigateData navData;
CStringA m_strForm = "name=+++&priv=1&password=";
navData.SetSocketTimeout(m_nMilliSecond);
navData.SetMethod(ATL_HTTP_METHOD_POST);
navData.SetP …
0
votes
1answer
57 views
How to include math Symbols in Editor or Textbox ..
hi
I have to include math symbols in my asp.net
so whatever the symbols it may be sigma , integral , pie etc..or any
how to write or display the Symbols in asp.net it should …
1
vote
1answer
127 views
How to get VBScript and ASP Symbol Files
Many Windows system files are available from Microsoft through a download page or http path. My WinDbg can't find the symbol files for VBScript.dll and ASP.dll and I can't seem to …
1
vote
2answers
41 views
How to reload registry settings ? (compact framework on a Symbol device)
Hello,
I have a pocket pc from the Symbol manufactor.
I would like to change programmaticaly the power timeouts and the backlight timeouts.
The application in charge of this setti …
1
vote
1answer
68 views
How can I force symbol a symbol reference in c++ (programmatically)
Hi,
I'm trying to plug tcmalloc into a suite of software that we currently use at work. The software comprises of a lot of dll's. They all refer to a shared header file, so I can …
0
votes
1answer
10 views
The symbol packaged downloaded from MS site
Hi,
I just downloaded the symbol package for WIN7 RTM but in my windbg it still find the symbol information for RegQueryValueEx().
From the windbg information it said some of the …
0
votes
11answers
325 views
what is the name of [] and what is the name of {} [closed]
What are the proper names for these different kinds of brackets?
1
vote
2answers
218 views
gcc -s and bash command strip
Hi,
I wonder what is the difference between these two:
gcc -s: Remove all symbol table and relocation information from the executable.
strip: Discard symbols from object files. …
0
votes
2answers
294 views
AS3 class for a Flash Symbol
Hi, I am new to Flash, I am trying to create a class for a symbol.
I created a new Flash file, drop a DynamicText, convert this DynamicText to a Symbol called "TextBox1"
Then I c …
2
votes
2answers
567 views
GCC How to export a function from static library
Hi,
I want to create a shared library from several static libs using GCC under OS X.
In some static libs, there's no code in shared library call it, I just want to export the sym …
2
votes
3answers
295 views
Mod_rewrite doesn’t work for a url beginning in % (percent sign)
There are several links pointing to a site I manage in which the webmaster mistakenly included a space between the domain name and the page name:
www.domain.com/ page.html
…
1
vote
2answers
223 views
When to use @ in a Rails View and when to use a symbol?
<% form_tag(:action=>'update', :id=>@album.id) do %>
Title: <%= text_field(:album, :title) %><br>
Artist: <%= text_field(:album, :artist) %>& …
-1
votes
3answers
126 views
unresolved external symbol Error - C
Linking...
mongoose.obj : error LNK2019: unresolved external symbol _send@16 referenced in function _push
static uint64_t
push(int fd, SOCKET sock, SSL *ssl, const char *buf, uint …
2
votes
2answers
133 views
What is the order of operations with this concatenation?
x = "hello" " world".to_sym
puts x.class
This works and allows me to concatenate the two strings into a symbol, producing the output:
Symbol
But if I change it slightly to …
