Jump to content
Xtreme .Net Talk

chuawenching

Avatar/Signature
  • Posts

    67
  • Joined

  • Last visited

chuawenching's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi there, I had been playing around with WMI. Seriously speaking it is very slow when extracing the clients information. Just say to check all machines 1000 PCs if the registry changes, will update me. To take 1 PC information already took me around 1 minutes. Furthermore if i had a slow network, it is even worst. I want something that had performance and speed. Is there any other ways to replace wmi and able to code with .net? Any help please? Thanks.
  2. Hi everyone, I want to do something like XMLSpy or may tools like DreamweaverMX. 1) When you type this: Before: ======== <MyCompany> //then the xml editor will automatically add the After: ======= <MyCompany> </MyCompany> I just want to do a very simple xml editor for c#. And at the end, save it into a xml file. I had been coding xml in notepad, and it is very troublesome. I am not sure what areas i need to research in. Is there any tutorial on this or any source code, which i can refer to? Any help, please? Thanks. Regards, Chua Wen Ching :p
  3. Thanks. I will look into it. :)
  4. Do you have any tutorials in c# that can convert binary to ascii then to xml? Any help, please? Thanks.
  5. But will it decrease the file size a lot? Or still the same?
  6. Hi there, I had 2 questions. 1) Just say i had an avi file of 20MB. How can i convert the whole AVI into xml and then i transfer over the internet? Can it be done with xml and c#? 2) If it is not possible, how could a pictures been converted into xml and C#. I heard DIME can do that, but DIME is dieing off. Any way please? Thanks.
  7. Hi there, I am wondering where i can learn Managed C++.NET. I had check out the msdn C++.NET specs. Very hard to learn. I had no money to buy books. And there are far too little tutorials on this area in google. Only see some like Hello World, Sortting algorithm (mostly consoles). I had no much knowledge in c++ so i can't be looking at application and learn it. Any help please? Thanks.
  8. Oh thanks. So actually amountopen = -500 so actually why can't the coder place -500 at the first place but (0-500)? There must be a reason right? Oh so virtual is used for that. Thanks a lot. :) Anyway do you know which tutorial in c# which i can learn good oop design? I hope that tutorials utilizes oop concept in a better way. Any help? Thanks :) Regards, Chua Wen Ching :p
  9. Hi there, I had some questions. I was learning c# and i saw this code: static int amountopen = (0 - 500); Hmm.. wonder, does it means we are setting a scope from 0 to 500 for integer amountopen? This is first time i seen. Oh ya, another added question. How does virtual keyword comes in handy in c# programming? Any good samples and explanations on that please. Thanks. Regards, Chua Wen Ching :p
  10. Hi there. I want to write a managed c++.net wrapper for the physics engine Tokamak. The problem is i had no experience in c++ except c#. I want to write a wrapper for tokamak so that my c# samples can reference to that dll and implement together with Directx 9. The problem is i don't know how to start? Should i choose c++.net at the first place or i should go to unmanaged c++ to do all this. Can you guys tell me what are the tutorials which i need to pick up along the way to achieve that? I had the time and willing to learn. Just no idea how to start. Thanks. Regards, Chua Wen Ching :p
  11. Hi there. Can i know where to learn advanced topics of c# like multi threading, property, events, data structures (stacks, linked list), etc? There are too many in the google. Any good ones which i can rely on? I want to get the right concepts... Any help? Thanks. Regards, Chua Wen Ching :p
  12. Thanks. Regards, Chua Wen Ching :p
  13. Hi there. I need some help here. I am trying to convert a sample application for learning purposes. But i am stuck to see this: Select Case ShipPitchSM Case Is > 0 ShipPitchSM = ShipPitchSM - Friction If ShipPitchSM < 0 Then ShipPitchSM = 0 If ShipPitchSM > 0.03 Then ShipPitchSM = 0.03 Case Is < 0 ShipPitchSM = ShipPitchSM + Friction If ShipPitchSM > 0 Then ShipPitchSM = 0 If ShipPitchSM < -0.03 Then ShipPitchSM = -0.03 End Select Select Case ShipYawSM Case Is > 0 ShipYawSM = ShipYawSM - Friction If ShipYawSM < 0 Then ShipYawSM = 0 If ShipYawSM > 0.03 Then ShipYawSM = 0.03 Case Is < 0 ShipYawSM = ShipYawSM + Friction If ShipYawSM > 0 Then ShipYawSM = 0 If ShipYawSM < -0.03 Then ShipYawSM = -0.03 End Select Select Case ShipRollSM Case Is > 0 ShipRollSM = ShipRollSM - Friction If ShipRollSM < 0 Then ShipRollSM = 0 If ShipRollSM > 0.03 Then ShipRollSM = 0.03 Case Is < 0 ShipRollSM = ShipRollSM + Friction If ShipRollSM > 0 Then ShipRollSM = 0 If ShipRollSM < -0.03 Then ShipRollSM = -0.03 End Select Any help? How do you code that in c#? I try my best to place conditions in case statements, but compile errors. Thanks. Regards, Chua Wen Ching :p
  14. Ok i will read. Thanks.
×
×
  • Create New...