[Issue 17453] I Have Many Issues

2017-06-05 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17453

Rainer Schuetze  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #10 from Rainer Schuetze  ---
I've fixed issue 17260, should affect your code, too. Try
https://github.com/dlang/visuald/releases/tag/v0.45.0-beta1

If problems still exist, please open more specific reports.

--


[Issue 17453] I Have Many Issues

2017-06-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17453

--- Comment #9 from Soar  ---
(In reply to Rainer Schuetze from comment #8)
> > still cant list the member after "l.?" "this.?".
> 
> It seems you might be running into something similar to issue 17260.
> 
> I cannot reproduce locally with your example, but it very much depends on
> the full source code and especially the imports. Does the status line
> continue to display "Pending semantic analysis request"?
> 
> I've also made a few improvements recently. You might want to try the
> preliminary build from appveyor:
> https://ci.appveyor.com/project/rainers/visuald/build/job/p04yes499l3omkcr/
> artifacts

yes,mate,its always display the status msg:"Pending semantic analysis request".
but never give out any members list.

thank you. i will trying.

--


[Issue 17453] I Have Many Issues

2017-06-03 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17453

--- Comment #8 from Rainer Schuetze  ---
> still cant list the member after "l.?" "this.?".

It seems you might be running into something similar to issue 17260.

I cannot reproduce locally with your example, but it very much depends on the
full source code and especially the imports. Does the status line continue to
display "Pending semantic analysis request"?

I've also made a few improvements recently. You might want to try the
preliminary build from appveyor:
https://ci.appveyor.com/project/rainers/visuald/build/job/p04yes499l3omkcr/artifacts

--


[Issue 17453] I Have Many Issues

2017-05-31 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17453

--- Comment #7 from Soar  ---

> > 3.can more good support for IntelliSense? such like "this.?" "variable.?"
> 
> You might want to have a look at the language optionss (accessible through
> the Visual D menu), especially "show expansion when".


2.such like:

class MainForm : Form {
   public this() {
   this.text = "DGui Form";
   this.size = Size(500, 400);
   this.startPosition = FormStartPosition.centerScreen; // Set Form
Position
   Label l=new Label();
   l.position=Point(0,0);
   l.text="Account ID..";
   l.parent=this;

  // l.size = Size(60, 40);

   }
}


//i cant list l.?
//i cant list this.?

i have setting the Visual D Setting> "DMD install path" "Impots paths" "Library
paths" and Intellisense>"writing an identifier"
where,not mate which i chose,thats still cant list the member after "l.?"
"this.?".

the library is from https://github.com/o3o/dguihub

--


[Issue 17453] I Have Many Issues

2017-05-30 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17453

--- Comment #6 from Soar  ---
and thank u reply for other problems.
i will try do thats.

--


[Issue 17453] I Have Many Issues

2017-05-30 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17453

--- Comment #5 from Soar  ---
(In reply to Rainer Schuetze from comment #4)
> > when i create a project,has
> > myproject/core/exception.d directory and file hierarchy
> 
> > and im write a module in a file like "module winmain;"
> > but i cant use any other like "module winmain.?"
> 
> That's how the module system works (and the compiler complaining about
> misusage). You might want to check the language specifications, e.g.
> https://dlang.org/spec/module.html. Questions about it might be more
> appropriate on the forum: https://forum.dlang.org/group/learn

if directly use dub to complete,thats will be build sucess

--


[Issue 17453] I Have Many Issues

2017-05-30 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17453

--- Comment #4 from Rainer Schuetze  ---
> when i create a project,has
> myproject/core/exception.d directory and file hierarchy

> and im write a module in a file like "module winmain;"
> but i cant use any other like "module winmain.?"

That's how the module system works (and the compiler complaining about
misusage). You might want to check the language specifications, e.g.
https://dlang.org/spec/module.html. Questions about it might be more
appropriate on the forum: https://forum.dlang.org/group/learn

--


[Issue 17453] I Have Many Issues

2017-05-29 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17453

--- Comment #2 from Soar  ---
and other bugs.
when i create a project,has
myproject/core/exception.d directory and file hierarchy

the VisualD will give me a error in the time.d
because the std library of timd.d has 
import core.exception;
.
this is one.
another is when my project has a file like myproject.d
and im write a module in a file like "module winmain;"
but i cant use any other like "module winmain.?"


Error: module winmain from file winmain.d conflicts with package name winmain  
 d:\Users\Soar\documents\visual studio
2015\Projects\myproject\myproject\winmain.d1

--


[Issue 17453] I Have Many Issues

2017-05-29 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17453

--- Comment #1 from Soar  ---
2.can support more highlight of library(class,struct)?
3.can more good support for IntelliSense?
such like "this.?" "variable.?"
4.is there have any possibility to support a official GUI design tool(Of course
thats need official has a great GUI project)?
5.support .sdl file?


The above problemsfound when i use VS2015 VisualD 0.44.2 .

--