Search results for query: *

  1. sunnypalsingh

    Oracle Service Problem

    I HAVE LOADED ORACLE 8i ON WINDOWS XP. IT HAD LOADED SUCCESSFULLY AND I HAD WORKED ON IT. BUT ON NEXT REBOOT WINDOWS IS NOT ABLE TO START THE SERVICE CALLED OracleServiceORCL. WHEN I TRY TO START IT AGAIN IT ENDS WITH AN ERROR:- I HAD SEARCHED FOR THIS ERROR AND MICROSOFT RECOMMENDED...
  2. sunnypalsingh

    How to send data to parallel port?

    As far as i know there's no built-in library in .NET to access the parallel port You need to use some third-party library/driver Let's wait for other replies also
  3. sunnypalsingh

    How to send data to parallel port?

    Use this Using the giveIO driver will greatly simplify your life. After installing giveIO from your application you can just use the standard IO calls inport and outport. http://www.littlesounddj.com/awkiawki/index.cgi/GiveIO
  4. sunnypalsingh

    suggest me a suitable project from the list..

    project Well it totally depends on you.....if you like networking...go with the first one....if u want it to be database intensive then go with third one..... Whereas marks are concerned i would say different and new things(not neccessarily very big or complex) does score high marks ...saying...
  5. sunnypalsingh

    Windows Forms FAQ

    Great This is an awesome link
  6. sunnypalsingh

    Need Help with this code:

    TabIndex or Tag Property Although Visual Basic .NET controls do not have an Index property, you can duplicate the functionality using another common property such as the TabIndex or Tag property. I haven't coded it yet but as soon as i do it...i'll post it...till then maybe someone else might...
  7. sunnypalsingh

    Need Help with this code:

    take a counter variable take a counter variable and make it an array index like:- dim count as integer=0 and refer array as arrProductNumber(count) and then increment count
  8. sunnypalsingh

    basic problem

    full solution i just figured out the looping problem.....there was no need for a do while loop.... thanx
  9. sunnypalsingh

    basic problem

    looping problem i know its difficult to write the code in 2-3 lines..that is why i said simple logic....anyways thanx a lot for giving the code but basically i had to code this in VB rather than VB.NET...that is why i stressed on logic ....and i know very less commands of VB...(I learnt VB.NET...
  10. sunnypalsingh

    basic problem

    i have a simple problem which i am not able to figure out....i am not asking for anyone to write a code for me...just a basic logic in 2-3 line if possible problem: Timer that makes a ball go around a frame and bounce back
  11. sunnypalsingh

    Free Web Hosting

    Where can i find free web hosting with asp.net support
  12. sunnypalsingh

    Doubles

    This will solve your problem Use decimal Instead of double
  13. sunnypalsingh

    RTF To HTML Conversion in VB.NET??

    Basically i am trying to make a package which converts from 1 file format to other(whole text).........earlier i was trying to code it fully myself but it was creating problems.but now i am using already built components for conversion which you can find it on net easily
  14. sunnypalsingh

    RTF To HTML Conversion in VB.NET??

    Problem solved Thanx alot guys......i was able to solve my problem through usual google search
  15. sunnypalsingh

    Working with bitarray

    I guess u need this I couldn't get your question fully but i think u need this Store the two bytes in two different arrays or (1 large array for both) using modulas---divide by 2 method Then to read it..traverse the array in reverse direction multiplying each bit value with...
  16. sunnypalsingh

    RTF To HTML Conversion in VB.NET??

    I would like to convert RTF file to HTML file Is there any way i can do it through VB.NET
  17. sunnypalsingh

    App not exiting

    You should not use END There are 2 reasons you generally don't want to use End. 1) It requires UnmanagedCode permissions for your application, this may or may not be an issue depending on the environment that you are working with. 2) It does not invoke finalizers or cause ending events in...
  18. sunnypalsingh

    App not exiting

    This Might Work Try Application.ExitThread() on your other thread make sure that you have isBackground set. this setting will cause the thread to exit when the application exits and not cause the process to continue running. "A thread is either a background thread or a foreground...
  19. sunnypalsingh

    Suggest me a Project

    Here are the details A point of sale system is a bit of software they use in shops: when they scan the barcode in, it gets interpreted by the POS system, which adds the price, item name etc. It then comes up with a total, maybe edits the stock count of the item, that kind of thing. If you...
  20. sunnypalsingh

    Suggest me a Project

    This might help u These project was suggested to me by some of intellectual users of this forum 1.POS(Point Of Sale System) System 2.Google Translator/Interpretor
Back
Top