|
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?
|
|
|
|
|
|
|
I am using microsoft directX DLL which work if we create 32 bit setup then it is working. But if we try to create a 64 bit setup then it shows error. please let me know there is any 64 bit DLL is available. Thanks a lot in advance.
|
|
|
|
|
Did you try typing "DirectX 64-bit redistributable" into Google?
|
|
|
|
|
ys I tried alot bt I didn't find any 64 bit "DirectX 64-bit redistributable". Some say that now microsoft doesnt support 64 bit MDX but I hope it should be there...
|
|
|
|
|
I hope, by MDX, you mean Managed DirectX, because that's been dead for quite a while now.
|
|
|
|
|
MDX has been dead for a long time now. Can you switch to something like SlimDX (IIRC it has a 64bit version) or are you not in a position to do that?
|
|
|
|
|
hi,
i have created c# project with backend mysql.and i created installer .ok fine.
but my question is: how to include database tables created along with installer.
|
|
|
|
|
You have to include the database and the configuration as redistributable files and install it with the installer.
Veni, vidi, caecus
|
|
|
|