|
I have no idea what you just said. It makes no sense at all.
|
|
|
|
|
As you have been told, we aren't going to download the file, and we aren't going to do your work for you.
As you have also been told, what you are saying doesn't make a whole lot of sense.
So...try this: take a step back, and pretend you know nothing about your project.
Now close your eyes so you can't see your screen, and disconnect your PC from your network.
Now you are in the state we are: we can't see your screen. We can't access your HDD. And very few of us can read your mind.
So, without opening your eyes or plugging your computer back onto the network try to work out a description of your problem which fits what you can see. and then type it up for us so we can understand what you are trying to do, and how you are trying to do it. Then explain what help you need, with relevant code fragments in necessary.
But until you do that, there isn't a lot we can do to help you!
|
|
|
|
|
ok sry sir
modified 22-Nov-13 14:13pm.
|
|
|
|
|
Hi All.
We develop a many windows application with different goals such as a Financial System, Clinic system, POS System, .... etc.
My issue is we don't need to create the users and the security part in each system, this mean we don't need to develop the user definition and the rights in each system.
we need a one centralized system the used as a dll and use it in the whole projects and use it to define users, rights and permissions, grant or deny a user permission.
please help me if you can how to design this system.
please not we use the c# windows applications
Thanks All.
|
|
|
|
|
It's called Single Sign On. You could study the architecture of providers such as Tivoli.
|
|
|
|
|
Thanks,
Do you have any links or topics about single sign on.
|
|
|
|
|
Yes[^]. About 1,670,000,000 results.
|
|
|
|
|
Well, I couldn't understand what you want. Could you tell me more clearly? 
|
|
|
|
|
Hi,
I want to centralize the users creation and permissions grant and use the system for all systems.
We create a specific user definitions and authentication module for each system and this take a time and cost.
Thanks for your care.
|
|
|
|
|
|
In the old days, yes. Have you seen the VS2013 IDE? One can "sign in" using the passport. Google has it's OAuth that kinda signs you in.
Next thing to privatize; proving one's identity.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Yeah, you can use any authentication source. It's more of a matter of what his requirements and environment allows. Only he can answer that question.
|
|
|
|
|
Hello all,
Im trying to learn on how to create a cube mesh via coding. Yet i seem to be stuck at making it.
This is what i got right now..
for(int i = 0; i < xSize; i++){
for(int y = 0; y < ySize; y++){
for(int j = 0; j < zSize;j++){
GenerateSphere(i * seperationX,y * seperationY, j*seperationZ);
newVertices[ConvertToArrayIndex(i,j,xSize)] = new Vector3(i * seperationX, y * seperationY,j * seperationZ);
Debug.Log (ConvertToArrayIndex(i,y,xSize));
int counter = 0;
if((i < xSize - 1) && y < (ySize - 1) && j < (zSize - 1)) {
newTriangles[counter] = ConvertToArrayIndex(i,j,xSize);
counter++;
newTriangles[counter] = ConvertToArrayIndex(i ,j + 1,xSize);
counter++;
newTriangles[counter] = ConvertToArrayIndex(i + 1,j,xSize);
counter++;
newTriangles[counter] = ConvertToArrayIndex(i+ 1 ,j+1,xSize);
counter++;
newTriangles[counter] = ConvertToArrayIndex(i + 1,j,xSize);
counter++;
newTriangles[counter] = ConvertToArrayIndex(i,j + 1,xSize);
counter++;
}
}
}
}
myMesh.vertices = newVertices;
myMesh.triangles = newTriangles;
GetComponent<MeshFilter>().mesh = myMesh;
}
void GenerateSphere(float x,float y,float z){
GameObject sphere = GameObject.CreatePrimitive(PrimitiveType.Sphere);
sphere.transform.localPosition = new Vector3(x,y,z);
sphere.transform.localScale = new Vector3(0.1f,0.1f,0.1f) ;
}
int ConvertToArrayIndex(int i, int j, int size){
return j +size * i;
}
I just need help, its not a homework or anything please.. Im just confused on how to continue..
|
|
|
|
|
begginerc2 wrote: Im just confused on how to continue. You could start by editing the above post and explaining what that code is supposed to do, and what is failing.
Veni, vidi, abiit domum
|
|
|
|
|
hello
can you help me?
I Want to get text format from pdf file or docx file
thanks
|
|
|
|
|
You already asked this question below, and received a good suggestion. Go and talk to the people who wrote the docx library.
Veni, vidi, abiit domum
|
|
|
|
|
Richard MacCutchan wrote: You already asked this question below
Not to mention the QA question[^] from yesterday.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Hi, can anyone clear me what is the difference between System and Object class?? From which our all classes are inherit?? Is there any Object class in c sharp like java?
|
|
|
|
|
There is no System class, its a namespace in C# which contains other namespaces and classes.
There is an object class, oddly enough, called System.Object (or System.object). Its the class from which all .NET classes/objects/structures/delegates and enumerations derive from.
|
|
|
|
|
|
I am using Docx dll to get paragraph information but not able to get paragraph format(font size-fontName-FontColor) Here is my code for that:
using (DocX document = DocX.Load("Test.docx"))
{
if (document.Paragraphs.Count() > 0)
{
for (int i = 0; i < document.Paragraphs.Count; i++)
{
Novacode.Paragraph pg = document.Paragraphs[i];
Console.WriteLine("Text:" + pg.Text +" Alignment:" + pg.Alignment + " Direction:" + pg.Direction);
}
}
}
|
|
|
|
|
How about asking the people who wrote DocX??
|
|
|
|
|
Can you databind a datagrid where the number of columns is determined at runtime? Specifically, let's say that you have a datagrid NetWorth with a column for each year. The natural thing (for me) is to define
class Person {
string Name { get; set; }
ObservableCollection<int> net {get; set; }
}
(actually I would have the event handlers here too, but I want to show just the skeleton). I can add a column at runtime, that's easy, but I can't bind column2013 to net[2013], or can I?
|
|
|
|
|
|