Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Proqrammer
  • Order by date
  1. Proqrammer

    Converting hex to string

    By ANSI characters I meant Ascii
  2. Proqrammer

    Converting hex to string

    in fact it equals to " BSD3105ELJGRBY"
  3. Proqrammer

    Converting hex to string

    Hi there I have this string which is in hex = "20202020202042534433313035454c4a47524259" I want it to be conveted to ANSI characters which is " SB3D01E5JLRGYB", is there any built in function to do it?
  4. Proqrammer

    Recording source

    Guess what, I restarted the computer after making Stereo mixer appear and it works well now. But it's a good idea to update the drivers Realtek High Definition Audi seems to be the sound chip my laptop has, are you sure that is the correct driver page for my laptop?
  5. Proqrammer

    Recording source

    Yes Linney, when I do that, it makes no difference. There could be something wrong with the audio chip my laptop has, it has realtek HD audio.
  6. Proqrammer

    Recording source

    It doesn't seem to work though in Paltalk, Here is a guide I have found here http://pctech.50megs.com/vistasound/ "To play music through your sound card (general information only: right-click "stereo mixer" and over "Set as Default for" then click "general usage" You'll see the mic...
  7. Proqrammer

    Recording source

    I did that, there is Stereo Mix, that's what I was looking for, thanks a lot
  8. Proqrammer

    Recording source

    Well see, when you are working with a program that records the voice somehow, e.g. a chat program, that program needs to receive the audio from a source. That source is usually the mic, but sometimes you don't want the recording source to be microphone only. For example you want to record a...
  9. Proqrammer

    Recording source

    I used to click on the speaker icon on my toolbar and then choose recording from options menu and then I used to be able to select "whatever you can hear" , or "stereo mix" or something like that when I was using XP now under vista, how can I do that? I play music in my chat program with that.
  10. Proqrammer

    Modules being executed before the forms.

    Thanks, that was good but it disables my xp looking features, how do I turn that back?
  11. Proqrammer

    Modules being executed before the forms.

    Hi there, In vb 2003, I was able to set a module as starting point of the project and the module was being executed by the compiler before any other thing. Now in vb 2005, you can't set a module as starting point of the project, it seems like you must choose a form instead. My first question...
  12. Proqrammer

    User Controls

    Thanks, that works fine for the code, but how do I change the way my control looks at design time?
  13. Proqrammer

    two projects in a solution

    My project is a windows application, it has forms and stuff can I really compile it into dll? how?
  14. Proqrammer

    User Controls

    Yes sure, Ok here is the long story, Once something really crazy happened to our project, I had a form in my solution and when I was clicking on it, in solution explorer tab, visual studio.net was shutting itself off. That was one of the weirdest things in my programming life. I tried to find...
  15. Proqrammer

    User Controls

    Hi there, I have some user controls in my project, how can I know if the user control is being executed under design mode or if it's the compiled application that is using my user control? I want my user control to look differently when it's in design mode how can I do that?
  16. Proqrammer

    two projects in a solution

    Will others be able to add my project as a reference to their solutions and use it too?
  17. Proqrammer

    two projects in a solution

    Hi there, I have two projects in my solution they both contain many forms and classes, how can I access members of a project from another project? Thanks
  18. Proqrammer

    Adding columns to an existing table

    Nevermind, I found it Deleting ALTER TABLE MyTable drop column MyColumn; Modifying -Changing the datatype (Varchar(35) is the new datatype) Alter table MyTable modify MyColumn VARCHAR(35) ; Modifying -Changing column's name. Alter table MyTable change OldName NewName varchar (10) ;
  19. Proqrammer

    Adding columns to an existing table

    That was great, can you give me an example of removing and editing too please?
  20. Proqrammer

    Adding columns to an existing table

    Hi there I wanna add a new column to an existing table, I'm using vb.net 2005. I found sp_repladdcolumn but the books says "This stored procedure has been deprecated and is being supported mainly for backward-compatibility. It should only be used with Microsoft SQL Server 2000 Publishers and...

Part and Inventory Search

Back
Top