Search results for query: *

  1. R

    Convert Number to Alphabet

    angka1 = Convert.ToInt32(dataGridView1.Columns.Count); if (angka1 > 26) { int pembantuhasil; hasil2 = angka1 % 26; pembantuhasil = angka1 / 26; #region hasil1 if (pembantuhasil == 1)...
  2. R

    Convert Number to Alphabet

    i want to change number to alphabet like this if i put number "1". the result is "A" when i put number "5". the result is "E" when i put number "26". the result is "Z" and then when i put number "27". the result is "A1" and then when i put number "53". the result is "B1" please answer this.
  3. R

    Create Public Server ?

    try this. it isn't mine, but you can look this.
  4. R

    TCP Listener Get HANG

    i want to develop about tcp connection but i got hang when tcplistener start. this is the code, when i push button : IPAddress ip = IPAddress.Parse("192.168.43.222"); TcpListener listen = new TcpListener(ip, 8001); listen.Start()...
  5. R

    transfer data to ASP.Net without Database?

    i will make it clear. in that picture, this is what i want. i want to connect winforms to ASP.net without database. Sorry, if i can't explain it before.
  6. R

    transfer data to ASP.Net without Database?

    i want to make a application (WFA) that can connect data to ASP.Net without database? any suggest please. i made the WFA, but i confuse about connecting to ASP.Net. Thank you. Newbie.
  7. R

    QR code Reader with a webcam

    sorry master, i have a problem with my project. anyone can help me, what do you suggest to choose a free source library for QR code reader? i need a library that have sensitivity when i capture a picture. please reply when you have a clue. any one.
  8. R

    How do I Compile my Program?

    i know the difference now. thank you for your information, jmcilhinney :o
  9. R

    How do I Compile my Program?

    no, you cant. you can compile with setup project file. your other files will compile with this setup, its like make a installation. watch this, you can learn from it. sorry if i'm wrong...
  10. R

    Looking for books recommendations to learn specifically about DB using .NET and C#

    making a own project and asking in this forum if you stack with your job.
  11. R

    school registration system

    i suggest you to use parsing method to write and read the text files.
  12. R

    open a c file, cpp file, java files and csharp files using opendialog?

    maybe you wrong about filter in opendialog.
  13. R

    Application has stopped working error

    can you show the error?
  14. R

    DataGridview update and Datagridview refresh

    i am agree with tuma. if you have small application, its not a big deal. but if you have big application and it has a big traffic network, it will lag to refresh your data. think about it. thanks
  15. R

    Best Practice many forms

    use mdi form, it will be minimalize your form. or you can use hide and show function into a frame.
Back
Top Bottom