THANKS :)
adnanh75
Posts
-
C# Is it possible to create ms.excel file in VS.Net (C#) -
C# Is it possible to create ms.excel file in VS.Net (C#)Export them, i have my data sorted in files (text files) someth like this: STATE X Y 1 2112 54545 2 344 342 etc.. I need to create diagrams from this data, and because of that I need a File to be opened in Excel
-
C# Is it possible to create ms.excel file in VS.Net (C#)I would like to cretate excel files with my app written in C#, is it possible? Does someone have an example? thanks
-
C# How to disable focus??Thanx mav :)
-
C# How to disable focus??Great, thank you for beeing patient and explaning me in this way.. thanks :)
-
C# How to disable focus??How can I disable focus on few buttons?
-
C# How to set enabled/disabled buttons collor?thanks :)
-
C# How to set enabled/disabled buttons collor?I would like to set another collor of my buttons if they were disabled.. How can I do it? Thank You:doh:
-
Disable write in comboBox C#It works :) Thaky you :)
-
Disable write in comboBox C#How can I disable write in comboBox? thanx :):doh:
-
My images are gone (c#)Done, it works, thanks mav :) thanks
-
My images are gone (c#)No, I am not creating a Setup.. Im still working on app.. I changed my code and added public struct PointD { public double x; public double y; } public struct node { public string Name; public ArrayList Lstates; } and my images were gone.. :sigh:
-
My images are gone (c#)I have a problem with images in my application, I cant build them in.. it allways says: ************************************************************************************************ Eine nicht behandelte Ausnahme des Typs 'System.Resources.MissingManifestResourceException' ist in mscorlib.dll aufgetreten. Zusätzliche Informationen: Für die angegebene Kultur (oder die neutrale Kultur) in der Assembly konnten keine Ressourcen gefunden werden. Stellen Sie sicher, dass 'Form1.resources' richtig in die Assembly 'NeckingRa' eingebettet wurde. baseName: Form1 locationInfo: NeckingRa.Form1 resource file name: Form1.resources assembly: NeckingRa, Version=1.0.1706.20859, Culture=neutral, PublicKeyToken=null ************************************************************************************************* Its in German, but someone maybe knews what is this about??? What should I do now? Please help me. I am beginer so please explane it so I can understand :)
-
What is missing? C#I am trying to read one text file, and create an Array.. Dos someone knews what am I doing wrong?? Can someone correct my code a little bit? private void panel13_Paint(object sender, System.Windows.Forms.PaintEventArgs e) { ArrayList nodes = new ArrayList(); FileStream file = new FileStream("C:\\NeckingRa\\Temp\\cut.dat", FileMode.Open,FileAccess.Read); StreamReader sr = File.OpenText("C:\\NeckingRa\\Temp\\cut.dat"); String line; while ((line=sr.ReadLine())!=null) { string s = sr.ReadToEnd(); string[] values = line.Split(' '); } sr.Close(); file.Close(); }
-
How to create a line from nodes?Yes off course it helps, now I knew how to read it from file.. I will have to find a way to plot those lines somehow.. Thank You very much
-
How to create a line from nodes?I have sent a sample file to You as attachment in mail message.. Its *.dat file, but You can open it with any text editor
-
How to create a line from nodes?In one moment I need line thrue all points, in next moment I get another node set (in my file are meny node sets for diferent moments (time steps), and I should draw a whole new line.. As result I should have an Animation, where one line getting deformed (changes shape).. At first it is straight (First time step-moment): .................................................. at the End (last step) it should looks like: ...... . . ............... .................. (something like that :) I hope that U understand, I appologise about my poor English :)
-
How to create a line from nodes?OK :) I am creating a little win application, in which I can select Input and Output Files for calculations I need. Calculation runs as a extern EXE File.. After ewerything is done, as result I get one text file where I can find data about NODEs (points) (x and y data). Now in my app, I need to create plot (drawing) in one pannel or something like that, a LINE which goes thrue my nodes.. I need to load this nodes file, (read it) and somehow create that plot.. And that is only for one moment, in next moment I have another Nodes position, and my LINE has changed.. So I taught, if I can do it for one time step (moment) I would change those pannels and so have something like an Animation..
-
How to create a line from nodes?I have a File with NODES (x and y values). Is it possible to draw a line with this nodes , and can someone show me how to do it (read it from file and draw)? I am beginer :sigh: I would like to have it in my form, schould I create Pannel to draw on it or how :) This is how my file looks like 1 0.0000E+00 -0.4396E+01 2 0.1136E+01 -0.4506E+01 3 0.2217E+01 -0.4706E+01 4 0.3290E+01 -0.4953E+01 5 0.4355E+01 -0.5230E+01 6 0.5409E+01 -0.5519E+01 7 0.6447E+01 -0.5808E+01 8 0.7472E+01 -0.6075E+01 9 0.8488E+01 -0.6324E+01 10 0.9492E+01 -0.6548E+01 11 0.1049E+02 -0.6749E+01 12 0.1147E+02 -0.6926E+01 13 0.1245E+02 -0.7086E+01 14 0.1343E+02 -0.7230E+01 15 0.1440E+02 -0.7360E+01 16 0.1538E+02 -0.7476E+01 17 0.1636E+02 -0.7568E+01 18 0.1735E+02 -0.7649E+01 19 0.1833E+02 -0.7719E+01 20 0.1931E+02 -0.7782E+01 21 0.2030E+02 -0.7836E+01 22 0.2130E+02 -0.7869E+01 23 0.2230E+02 -0.7902E+01 24 0.2331E+02 -0.7936E+01 25 0.2431E+02 -0.7969E+01 26 0.2532E+02 -0.8003E+01 27 0.2632E+02 -0.8036E+01 28 0.2733E+02 -0.8070E+01 29 0.2833E+02 -0.8103E+01 30 0.2934E+02 -0.8137E+01 31 0.3034E+02 -0.8170E+01 32 0.3134E+02 -0.8204E+01 33 0.3235E+02 -0.8237E+01 34 0.3335E+02 -0.8271E+01 35 0.3435E+02 -0.8336E+01 36 0.3535E+02 -0.8404E+01 37 0.3635E+02 -0.8474E+01 38 0.3735E+02 -0.8547E+01 Thanx, .a.d.o.
-
Wait for external application to complite and than continue??Thank U, it works now.. Great, I am very very thankful for Your Help.. There are still a lot of Great an Cool people outthere in the World.. Once again Thanx :)