Hi,teacher:
I like D lang,when I download the soft from
http://www.360totalsecurity.com/en/, but I find, the link.exe of
dmd or ldc2,all have the ‘Trojan horse virus’.
dmd.2.082.1.windows.7z:HEUR/QVM19.1.92C9.Malware.Gen
file MD5:91ce2a59f06151902a1f3fc49e0a4752
ldc2-7e9db717-window
On Wednesday, 17 October 2018 at 13:50:03 UTC, Stanislav Blinov
wrote:
On Wednesday, 17 October 2018 at 13:48:04 UTC, FrankLike wrote:
What can I do?
Delete the bloatware that you downloaded.
Where can get the new dmd or ldc2 that's no 'Trojan horse virus' ?
Hi,everyone,
In C++, _T can guarantee that when converting from ascii
encoding type to unicode encoding type, the program does not need
to be modified. What do I need to do in D?
Thanks.
On Tuesday, 22 January 2019 at 14:07:48 UTC, Olivier Pisano wrote:
On Tuesday, 22 January 2019 at 13:55:30 UTC, FrankLike wrote:
In D, there is only Unicode. The language doesn't manipulate
strings encoded in Windows local code-pages.
For example:
std::wstring strTest(_T("d://"));
UINT nR
On Tuesday, 22 January 2019 at 16:13:57 UTC, FrankLike wrote:
On Tuesday, 22 January 2019 at 14:07:48 UTC, Olivier Pisano
wrote:
Some error is in "core.sys.windows.windows"?
Thank you.
On Tuesday, 22 January 2019 at 16:18:17 UTC, Adam D. Ruppe wrote:
Use "mystring"w, notice the w after the closing quote.
"GetDriveType" Function is auto work by "_T" in C++,but how to
do in D?
On Tuesday, 22 January 2019 at 16:18:17 UTC, Adam D. Ruppe wrote:
Use "mystring"w, notice the w after the closing quote.
Or toStringz is not work like c_str() in C++?
On Tuesday, 22 January 2019 at 21:49:00 UTC, bauss wrote:
On Tuesday, 22 January 2019 at 19:14:43 UTC, Jonathan M Davis
Is there a reason we cannot implement toStringz like:
immutable(TChar)* toStringz(TChar = char)(scope const(TChar)[]
s) @trusted pure nothrow;
// Couldn't find a way to ge
On Tuesday, 22 January 2019 at 21:49:00 UTC, bauss wrote:
On Tuesday, 22 January 2019 at 19:14:43 UTC, Jonathan M Davis
Is there a reason we cannot implement toStringz like:
immutable(TChar)* toStringz(TChar = char)(scope const(TChar)[]
s) @trusted pure nothrow;
// Couldn't find a way to ge
On Wednesday, 23 January 2019 at 10:44:51 UTC, Jonathan M Davis
wrote:
On Tuesday, January 22, 2019 2:49:00 PM MST bauss via
Digitalmars-d-learn wrote:
toUTFz is the generic solution. toStringz exists specifically
Error: template std.utf.toUTFz cannot deduce function from
argument types !()
On Wednesday, 23 January 2019 at 14:12:09 UTC, Jonathan M Davis
wrote:
On Wednesday, January 23, 2019 5:42:55 AM MST FrankLike via
std.conv.to will allow you to convert between string and
wstring, but for calling C functions, you still need the
strings to be zero-terminated unless the functio
Hi,everyone,
for example:
import std.stdio;
import std.process:executeShell;
extern(C) int setlocale(int,char*);
static this()
{
import core.stdc.wchar_;
import core.stdc.stdio;
fwide(core.stdc.stdio.stdout,1);
setlocale(0,cast(char*)"china");
}
void main()
{
On Thursday, 24 January 2019 at 07:48:44 UTC, FrankLike wrote:
Hi,everyone,
for example:
import std.stdio;
import std.process:executeShell;
extern(C) int setlocale(int,char*);
static this()
{
import core.stdc.wchar_;
import core.stdc.stdio;
fwide(core.stdc.stdio.stdout
On Thursday, 24 January 2019 at 12:19:44 UTC, Kagamin wrote:
Try workarounds here:
https://issues.dlang.org/show_bug.cgi?id=1448
https://issues.dlang.org/show_bug.cgi?id=2742
Ok,thank you.
import std.stdio;
import core.sys.windows.windows;
import std.process:executeShell;
extern(Windows) bool
On Thursday, 24 January 2019 at 12:19:44 UTC, Kagamin wrote:
Try workarounds here:
https://issues.dlang.org/show_bug.cgi?id=1448
https://issues.dlang.org/show_bug.cgi?id=2742
How do I set the font? Please.
On Friday, 25 January 2019 at 08:41:23 UTC, Kagamin wrote:
Create a shortcut to cmd.exe and edit its properties. The
console window itself has a system menu for this too.
I known that.
I need to set the font by the code now, because I need to do the
installer, can't let this installer set the
On Friday, 25 January 2019 at 16:14:56 UTC, Kagamin wrote:
also
http://blogs.microsoft.co.il/pavely/2009/07/23/changing-console-fonts/
That's so much code than next code!
/
extern(C) int setlocale(int,char*);
static this()
{
import core.stdc.wchar_;
On Friday, 25 January 2019 at 15:05:50 UTC, John Chapman wrote:
On Friday, 25 January 2019 at 14:23:15 UTC, FrankLike wrote:
I need to set the font by the code now, because I need to do
the installer, can't let this installer set the properties on
each computer?
SetCurrentConsoleFontEx perhap
On Saturday, 26 January 2019 at 09:33:33 UTC, John Chapman wrote:
What has that code got to do with setting the console's font?
So you need to add more code to accomplish that.
You don't need to set the font to achieve the goal, why not?
On Sunday, 27 January 2019 at 10:44:04 UTC, John Chapman wrote:
On Sunday, 27 January 2019 at 06:14:15 UTC, FrankLike wrote:
On Saturday, 26 January 2019 at 09:33:33 UTC, John Chapman
wrote:
What has that code got to do with setting the console's font?
So you need to add more code to accomp
On Wednesday, 30 January 2019 at 05:14:20 UTC, Sobaya wrote:
I want to get a mangled name of a D function by
`core.demangle.mangle`, but I'm in trouble because there are no
ways to express a type of a function, which is used for a
template argument of `mangle`.
For example, it is wrong to use
On Wednesday, 30 January 2019 at 05:40:50 UTC, FrankLike wrote:
On Wednesday, 30 January 2019 at 05:14:20 UTC, Sobaya wrote:
I want to get a mangled name of a D function by
`core.demangle.mangle`, but I'm in trouble because there are
no ways to express a type of a function, which is used for a
Hi,everyone,
How to test that the IP port is reachable?
In C,you can do this like that, what should I do in D?
/* C Code*/
https://blog.csdn.net/zhangyingchuang/article/details/51957552
#include
#include
#include
#include
#include /* inet(3) functions */
#define bool int
#define false
On Saturday, 6 April 2019 at 03:24:04 UTC, FrankLike wrote:
Hi,everyone,...
Do you have some better code than this?
import std.stdio;
import std.socket;
void main()
{
testIPPort();
}
bool testIPPort()
{
try
Hi,everyone,
Is there anyone on the official website who is willing to submit
this? If you can submit, the development of D language is a good
thing.
"https://open.soft.360.cn/regist.php";
"link.exe" and "optlink.exe" found the Trojan virus:
--
On Monday, 18 December 2017 at 07:55:25 UTC, Andrey wrote:
Hello!
I have a question about creating native GUI applications for
Windows 7 or/and Windows 10.
Hi,here is a very good native d gui lib,it's name is "dgui":
https://github.com/FrankLIKE/DguiT/
I fork and modify ,let it work on DM
Hi,everyone,
I need some help on 'Number Convert module' in D,such as
byte[] type to BinaryDigit.
Where can get the module?
Thanks.
On Sunday, 14 January 2018 at 02:03:39 UTC, Jonathan M Davis
wrote:
Well, I'm not quite sure what you mean, but if you mean that
Such as byte[] byteData =[0,0,0,8];
to convert, at last,get the string bit :"100".or get the BitArray.
Thanks.
On Sunday, 14 January 2018 at 02:41:39 UTC, FrankLike wrote:
On Sunday, 14 January 2018 at 02:03:39 UTC, Jonathan M Davis
wrote:
Well, I'm not quite sure what you mean, but if you mean that
Sorry,Such as byte[] byteData =[8,0,0,0];
to convert, at last,get the string bit :"100".or get the BitA
On Sunday, 14 January 2018 at 03:09:40 UTC, Jonathan M Davis
wrote:
On Sunday, January 14, 2018 02:41:39 FrankLike via
Digitalmars-d-learn wrote:
[...]
I'd suggest looking at
[...]
I get the result "1000" from byte[] byteData =[0,0,0,8];
Thank you very much.
On Sunday, 14 January 2018 at 03:28:28 UTC, FrankLike wrote:
On Sunday, 14 January 2018 at 03:09:40 UTC, Jonathan M Davis
wrote:
On Sunday, January 14, 2018 02:41:39 FrankLike via
Digitalmars-d-learn wrote:
[...]
I'd suggest looking at
[...]
I get the result "1000&qu
On Sunday, 14 January 2018 at 03:49:05 UTC, Jonathan M Davis
wrote:
I get the result "1000" from byte[] byteData =[0,0,0,8];
Thank you very much.
Good to hear.
On a side note, I would point out that you almost certainly
want to be using ubyte and not byte. byte is signed, whereas
ubyte i
Now,I can get the string from hex string in compile time,but how
to get it in run time?
How to get it in run time?
Thanks.
On Monday, 5 February 2018 at 06:12:22 UTC, H. S. Teoh wrote:
On Mon, Feb 05, 2018 at 05:48:00AM +, FrankLike via
assert(str == "Hello world!");
Thanks.very good!
On Monday, 5 February 2018 at 06:12:22 UTC, H. S. Teoh wrote:
On Mon, Feb 05, 2018 at 05:48:00AM +, FrankLike via
auto input = "48656c6c6f20776f726c6421";
auto str = input.chunks(2)
.map!(digits => cast(char) digits.to!ubyte(16))
On Monday, 5 February 2018 at 06:12:22 UTC, H. S. Teoh wrote:
On Mon, Feb 05, 2018 at 05:48:00AM +, FrankLike via
auto input = "48656c6c6f20776f726c6421";
auto str = input.chunks(2)
.map!(digits => cast(char) digits.to!ubyte(16))
On Monday, 5 February 2018 at 09:45:11 UTC, tetyys wrote:
On Monday, 5 February 2018 at 08:41:43 UTC, FrankLike wrote:
Casting unknown bytes to string or char is unsafe, and
obviously some bytes can be invalid UTF8 sequences.
Thank you.I got my error.
On Monday, 5 February 2018 at 10:04:10 UTC, Seb wrote:
On Monday, 5 February 2018 at 08:41:43 UTC, FrankLike wrote:
auto input = cast(string)hexString(hash);
Use toHexString to get the string:
Sorry,'hexString(hash)' is my clerical error.
Thank you.I got the answer "no array".
Hi,everyone,
I want use the Com object (it comes from other dll) in D,but the
core.sys.windows.objidl:QueryInterface Fuction not work.
For example:
import core.sys.windows.windef;
import core.sys.windows.basetyps;
import core.sys.windows.uuid;
import core.sys.windows.com;
import
core.sys.win
On Thursday, 22 February 2018 at 13:15:11 UTC, rikki cattermole
wrote:
Reminder classes in D are already references, no need for
pointers to them.
Thank you,but get the same error.
[D CODE]
if(lpszLnkFileDir is null) return;
HRESULT hr;
IShellLink pLink;
IPer
On Thursday, 22 February 2018 at 13:15:11 UTC, rikki cattermole
wrote:
On 23/02/2018 2:12 AM, FrankLike wrote:
IShellLink* pLink;
IPersistFile* ppf;
Reminder classes in D are already references, no need for
pointers to them.
Ok,I delete the pointers ,It's ok!
Thank you very muc
Hi,everyone,
How to use strip or stripRight on char[len]?
For example:
string abcs ="aabc";
auto abcsaa = abcs.stripRight;
writeln(abcsaa);
writeln("---abcsaa--stripRight ok ");
char[100] abc ="aabc";
auto abcaa = ((abc).dup).stripRight;
writeln(abcaa);
writeln("stripRight e
On Thursday, 22 February 2018 at 16:59:40 UTC, Adam D. Ruppe
wrote:
On Thursday, 22 February 2018 at 16:55:14 UTC, FrankLike wrote:
It is simply that these functions require a slice so it can
resize it and you can't resize a static array.
char[100] abc ="aabc";
string aa = to!strin
On Thursday, 22 February 2018 at 17:08:14 UTC, FrankLike wrote:
On Thursday, 22 February 2018 at 16:59:40 UTC, Adam D. Ruppe
wrote:
On Thursday, 22 February 2018 at 16:55:14 UTC, FrankLike wrote:
It is simply that these functions require a slice so it can
resize it and you can't resize a stat
On Thursday, 22 February 2018 at 16:59:40 UTC, Adam D. Ruppe
wrote:
On Thursday, 22 February 2018 at 16:55:14 UTC, FrankLike wrote:
char[100] abc ="aabc";
auto abcaa = ((abc).dup).stripRight;
try:
auto abcaa = stripRight(abc[])
Now,I want to get the result:
char[100] Path;
writeln(
On Thursday, 22 February 2018 at 18:02:11 UTC, Adam D. Ruppe
wrote:
You don't strip that at all, the function writes a
zero-terminated string to the buffer.
Thank you very much ! I forgot it.
Hi,everyone,
I can convert some simple C macros, but a bit more complicated
will need your help.
For example:
#define _NDIS_CONTROL_CODE(request,method) \
CTL_CODE(FILE_DEVICE_PHYSICAL_NETCARD, request,
method, FILE_ANY_ACCESS)
#define IOCTL_NDIS_QUERY_GLOBAL_STATS _NDIS_CONTR
On Saturday, 24 February 2018 at 13:57:27 UTC, Adam D. Ruppe
wrote:
On Saturday, 24 February 2018 at 13:50:16 UTC, FrankLike wrote:
#define IOCTL_NDIS_QUERY_GLOBAL_STATS _NDIS_CONTROL_CODE(0,
METHOD_OUT_DIRECT)
auto IOCTL_NDIS_QUERY_GLOBAL_STATS () {
return _NDIS_CONTROL_CODE(0, METHOD_OU
Hi,everyone,
Now,I use some code in strsafe.h,but where can get the strsafe.d ?
Thanks.
Hi,everyone,
How to compile C++ and D code, and linking them together on
Windows ? I will use c++ function In D.
I use vs2010 c++ on Windows, What should I do?
For example:
1. create 2 files: C++.cpp D.d
2. I get the C++.obj fiel by vs2010.
3. I get the D.obj by dmd -c -m32mscoff
Then how
On Sunday, 25 February 2018 at 14:26:24 UTC, Arredondo wrote:
On Friday, 23 February 2018 at 18:29:09 UTC, Ilya Yaroshenko
wrote:
full days now. All the .lib/.a files I have tried for BLAS and
to do: dmd -L .\openblas.lib
put the lib file in your code path.
Error 42: Symbol Undefined _cb
On Sunday, 25 February 2018 at 15:38:31 UTC, FrankLike wrote:
Hi,everyone,
How to compile C++ and D code, and linking them together on
Windows ? I will use c++ function In D.
I use vs2010 c++ on Windows, What should I do?
For example:
1. create 2 files: C++.cpp D.d
2. I get the C++.obj fie
Now,we can't setup dmd or ldc like this:
sudo apt-get install dmd
sudo apt-get install ldc2
If I set 'The Installation Source' is :
deb http://downloads.dlang.org/releases/2015/ main
But it's error,why?
Thank you.
On Tuesday, 22 December 2015 at 14:11:29 UTC, Rikki Cattermole
wrote:
On 23/12/15 3:09 AM, FrankLike wrote:
Now,we can't setup dmd or ldc like this:
sudo apt-get install dmd
sudo apt-get install ldc2
If I set 'The Installation Source' is :
deb http://downloads.dlang.org/releases/2015/ main
On Tuesday, 22 December 2015 at 14:37:21 UTC, Rikki Cattermole
wrote:
I'm confused.
The commands listed e.g.
$ sudo wget
http://netcologne.dl.sourceforge.net/project/d-apt/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list
$ sudo apt-get update && sudo apt-get -y
--allow-unauthenticated in
On Tuesday, 22 December 2015 at 15:08:20 UTC, FrankLike wrote:
On Tuesday, 22 December 2015 at 14:37:21 UTC, Rikki Cattermole
wrote:
I'm confused.
The commands listed e.g.
$ sudo wget
http://netcologne.dl.sourceforge.net/project/d-apt/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list
$ su
Hi,everyone,
I've download the arm-unknown-linux-gnueabi and
arm-unknown-linux-gnueabihf,which is I must to use on ' Raspberry
Pi'?
Now,I've chosen the arm-unknown-linux-gnueabihf.That's ok?
I've made the hello.d,and made the hello.
The file 'hello' can be used on 'Raspberry Pi'?
Now I'm not
Hi,everyone,I build wiringPi for 'Raspberry
Pi'.(http://wiringpi.com/)
Here is error info:
---gdcbuild
#! /bin/sh
dfiles="max31855.d max5322.d mcp23008.d mcp23016.d mcp23016reg.d
mcp23017.d mcp23s08.d mcp23s17.d mcp23x08.d mcp23x0817.d
mcp3002.d mcp3004.d mcp3422.d mcp4802.d pcf8574.d pcf8
Hi,everyone,I build wiringPi for 'Raspberry Pi' by GDC
(arm-unknown-linux-gnueabihf2.066.1).('wiringPi' download by
http://wiringpi.com/)
Here is error info:
---gdcbuild
#! /bin/sh
dfiles="max31855.d max5322.d mcp23008.d mcp23016.d mcp23016reg.d
mcp23017.d mcp23s08.d mcp23s17.d mcp23x08.d
Hi,
Now I need get the .a file on Linux,target system is ARM.
If you use gcc ,you will use the 'ar' to get .a file,
but how to do by GDC ?
And how to get the execute file by .a file and .d file?
Thank you.
On Sunday, 27 December 2015 at 15:24:17 UTC, tcak wrote:
On Sunday, 27 December 2015 at 15:19:21 UTC, FrankLike wrote:
Hi,
Now I need get the .a file on Linux,target system is ARM.
If you use gcc ,you will use the 'ar' to get .a file,
but how to do by GDC ?
And how to get the execute file
Now I build a project for ARM linux on ubuntu 15.04 ,but build
error.
I download the 'wiringPi' from http://wiringPi.com,convert the
*.h to *.d.then build the 'aa.so' file:
#! /bin/sh
dfiles="max31855.d max5322.d mcp23008.d mcp23016.d mcp23016reg.d
mcp23017.d mcp23s08.d mcp23s17.d mcp23x08.d mc
On Sunday, 27 December 2015 at 17:19:26 UTC, Mike Parker wrote:
On Sunday, 27 December 2015 at 15:19:21 UTC, FrankLike wrote:
Hi,
Now I need get the .a file on Linux,target system is ARM.
If you use gcc ,you will use the 'ar' to get .a file,
but how to do by GDC ?
And how to get the execu
About the first error ("...module wiringPi is in file
'wiringPi.d' which cannot be read...") - are you sure that the
dfiles are in "./wiringPi/WiringPi/"? The compiler reports that
it can't find them there.
You can try copying the WiringPi dfiles in the same folder as
"my.d".
About the second
On Monday, 28 December 2015 at 13:17:04 UTC, FrankLike wrote:
About the first error ("...module wiringPi is in file
'wiringPi.d' which cannot be read...") - are you sure that the
dfiles are in "./wiringPi/WiringPi/"? The compiler reports
that it can't find them there.
You can try copying the Wi
I've gotten the answer: use the difference 'gcc' for c code.
---For x86_64:
#! /bin/sh
dfiles="max31855.d max5322.d mcp23008.d mcp23016.d mcp23016reg.d
mcp23017.d mcp23s08.d mcp23s17.d mcp23x08.d mcp23x0817.d
mcp3002.d mcp3004.d mcp3422.d mcp4802.d pcf8574.d pcf8591.
Answer is here:
http://forum.dlang.org/thread/txvntyahlaewutzzw...@forum.dlang.org
Answer is here:
http://forum.dlang.org/thread/txvntyahlaewutzzw...@forum.dlang.org
On Monday, 28 December 2015 at 15:23:19 UTC, FrankLike wrote:
New Answer: I've gotten the answer: use the difference 'gcc' for
c code.
---For x86_64:
#! /bin/sh
dfiles="max31855.d max5322.d mcp23008.d mcp23016.d
mcp23016reg.d mcp23017.d mcp23s08.d mcp23s17.d mcp2
On Friday, 25 December 2015 at 12:43:05 UTC, Jakob Jenkov wrote:
Hi, just a quick question:
If I write a program in D and I use Windows for development but
want it to run on Linux, do I have to copy the source code to
the target Linux machine and compile it there, to make an
executable for th
Hi,everyone:
I want to access the phone on Windows7,but get a error:
std.file.FileException@std\file.d(3368):\\computer\myPhone\SDCard\myfiles:
0x0041c112
0x0043E601
The error is only on Windows7,it's ok on linux,I doubt it's not a
error with file.d,maybe a e
Hi,everyone,
Whether there is a module, like C#'s "Windows.Storage"
NameSpace, you can operate the Android phone or ios phone, you
can open the phone's folder on windows7?
Thank you .
Frank.
Hi,everyone,
This code must add the 'break',
import std.stdio;
int x=0;
template isin(T){
bool isin(T[] Array,T Element){
bool rtn=false;
foreach(T ArrayElement; Array){
if(Element==ArrayElement){
rtn=true; break; ← //here add break
Hi,everyone,
It works maybe the best:
import std.stdio;
template isin(T){
bool isin(T[] Array,T Element){
foreach(T ArrayElement; Array){
if(Element==ArrayElement){ return true;}
}
return false;
}
}
void main(string[] args)
{
int[] stuff=[0,1,2,3,4,5
Hi,everyone,
I have modified the DFL's d files ,now it can get x86 libs,and
can get x64 libs.
on x86, dfl.lib works ok,but on x64 dfl64.lib works not ok.
This is my makelib64.bat ,who can help me?
makelib64_libs.bat:make some libs for make dfl
libs--
@rem Make DFL x6
On Monday, 14 April 2014 at 17:13:56 UTC, FrankLike wrote:
My advice - use ODBC, it is the fastest way you may connect to
the SQL server, and you already have everything you need for
that. :)
Regards
I have test the d\dmd2\windows\lib\odbc32.lib,the size is 4.5kb,
I test it by test.d(build
Maybe not add -L+somelib.lib
Hi,everyone,
I build the dlangui on win7 x64,use the debug win32,it can get
the example1.exe,
but use the debug x64,not get the exe file,the error is
Error: function pointer FreeImage_OpenMemory (ubyte* data =
null, uint size_in_bytes = 0u) is not callable using argument
types (ubyte*,
ulon
The problem I am running in to now is that Xamarin Studio now
launches Test.pdb.exe which doesn't seem to do anything at all.
Use visual d,it's simple for using pdb.exe
Hi,everyone,
I find the The writeln() function's args can't be ["一" ,"二"]?
why?
Thank you.
Frank.
The problem is that you have a wide-character comma (,) there.
This works:
void main() {
writeln(["一", "二"]);
}
No,I mean the execute result is error.That doesn't get the ["一",
"二"],but get the ["涓C","浜?].
Why?
Thank you.
Frank.
On Tuesday, 6 May 2014 at 15:03:11 UTC, Regan Heath wrote:
On Tue, 06 May 2014 15:48:44 +0100, Marc Schütz
wrote:
On Tuesday, 6 May 2014 at 13:35:57 UTC, FrankLike wrote:
The problem is that you have a wide-character comma (,)
there.
This works:
void main() {
writeln(["一", "二"]);
That is understandable: Since the console is set to 936, it
interprets D program's UTF-8 output incorrectly.
Please do what Regan Heath says and test again:
1) Set the code page to 65001
2) Use a font that includes your Unicode characters
Ali
Thank you.
I modify it by the 'Regedit'(my O
Hi,everyone,
down VisulaD from
http://rainers.github.io/visuald/visuald/StartPage.html
found the virus:Win32.Troj.Undef.(kcloud)
Why?
Frank
Most probably a false positive. What antivir do you use?
http://www.ijinshan.com/duba/newduba.shtml
I build the vibe.d's example: http-server-example,the exe's size
is 5M ,it's very good, is better than go's beeblog,the beeblog's
size is 12M.
I very like D,but the Memory Usage is bigger than go's exe.
http-server-example.exe's Memory Usage is 3.5M,but the beeblog's
Memory Usage is 2.5M,I don
The form-interface-example.exe's Memory Usage is 3.5M,if have
some error,then Memory Usage is 6.7M,if error is closed,the
Memory Usage keeps in 6.7M ,until you close the exe.
the error :such as
'500 - Internal Server Error
Internal Server Error
Internal error information:
object.Exception@
How to use 'Heat the compiler' to vibe.d?
If you can not stop the exe ,how to do?
Thank you.
Frank
I've been using VisualD for a long time without problems. If it
makes you nervous, you can get the source from Github and
compile it yourself.
Hello,Meta
When I compile the Visual D projects:
at first,I compile the 'build' project,then get some error:
--START ALL BUILD: PROJECT: c2d,
You have spaces in your path, which is not good. Put quotes
around the file paths, like so:
VSSDK100Install = "C:\Program Files (x86)\Microsoft Visual
Studio 2010 SDK SP1"
WindowsSdkDir = "C:\Program Files (x86)\Microsoft
SDKs\Windows\v7.0A"
Thank you.
You have spaces in your path, which is not good. Put quotes
around the file paths, like so:
VSSDK100Install = "C:\Program Files (x86)\Microsoft Visual
Studio 2010 SDK SP1"
WindowsSdkDir = "C:\Program Files (x86)\Microsoft
SDKs\Windows\v7.0A"
Sorry,Meta,
the problem still exists,but I compil
On Sunday, 11 May 2014 at 02:38:44 UTC, IceNature via
Digitalmars-d-learn wrote:
When there are Chinese characters in the output, the console
will display messy code.I change the encoding of the
source file into UTF-8 or UTF-16,but the messy code is
still there...
I use the
On Sunday, 11 May 2014 at 06:35:26 UTC, IceNature via
Digitalmars-d-learn wrote:
Thank you for your help. But if I change the default console
encoding,will it affect other programs,making other console
program show messy code?
Don't affect,and you must set the font to a unicode font ,such
There are some quotes missing when building the Debug
configuration. I have committed a fix and also added the
missing file reported in your other message (IIRC it is not
needed by every VS SDK).
Thank you,I'll try it.
Frank
There are some quotes missing when building the Debug
configuration. I have committed a fix and also added the
missing file reported in your other message (IIRC it is not
needed by every VS SDK).
Sorry,Rainer Schuetze,
Here is some error when compile the VisualD:
--ERROR START
On Monday, 12 May 2014 at 06:36:10 UTC, FrankLike wrote:
There are some quotes missing when building the Debug
configuration. I have committed a fix and also added the
missing file reported in your other message (IIRC it is not
needed by every VS SDK).
Sorry,Rainer Schuetze,
And there is a
ctc.exe is not distributed with the SDKs starting from VS2010,
so mapping to a more recent version does not work. That's why
there is a precompiled pkgcmd.cto file in the repository.
You'll have to update its modification time to avoid the build
process trying to generate it from pkgcmd.ctc e
1.DFL's Memory Usage is the least than other. winsamp.exe is
2.1M,DFL's example's exe is 2.7M.
2.The size of DFL's example's exe files is the least than other,
and only a single file.
3.DFL's source code is the most easy to understand.
Although DFL not use on Linux or Mac os X,it's easy to do f
If you offen open the 'forum.dlang.org',always want to open the
web quickly,
but how to use the 'ExecuteShell','execv','execvp' open the
'forum.dlang.org'?
module main;
import std.process,std.stdio;
void main()
{
const string[] urls =["http://localhost:8080";];
const string
On Tuesday, 13 May 2014 at 06:24:27 UTC, Jacob Carlborg wrote:
On 13/05/14 02:10, FrankLike wrote:
1.DFL's Memory Usage is the least than other. winsamp.exe is
2.1M,DFL's
example's exe is 2.7M.
2.The size of DFL's example's exe files is the least than
other, and
only a single file.
3.DFL's so
1 - 100 of 163 matches
Mail list logo