Jump to content
Xtreme .Net Talk

kante

Members
  • Posts

    13
  • Joined

  • Last visited

About kante

  • Birthday 06/24/1978

kante's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. i'm using WMencoder object, i can encode audio n video but when i try to add scripts... following the MSN doc using: IWMEncSource SrcScript = SrcGrp.AddSourceWMENC_SOURCE_TYPE.WMENC_SCRIPT); i encounter this error Exception from HRESULT: 0xC00D1B5F. :confused: any one can help me ? thank u
  2. When i create a new Prject ->setup wizard, to create an MSi installer of my project, when i'll lauch it it will check if the framework is installed on the PC, and, if not,it will pop up a message to go to download it.... Is it possible to include directly the Framework installer into the msi project so when it is not installed it go to intall the framework directly instead to tell u to go to download it? Thank you
  3. Wich is the better way to load in memory an XML file. To faster my application I mean. I don't want to access everytime to myXML file but i want to charge it in a struct data or something similar... Which is the optimized way to use some data in a XML file? Thanks
  4. i use this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress); and then private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) { MessageBox.Show("" + e.KeyChar);} to catch the every key press in my form.... but why it doesn't work with arrow keys? how can i arrange it to catch all keyboard keys? thank you!
  5. i would like to create with c# a Draggable Cursor. in a pseudo language that's wat i tryed to obtain it: cursor.click -> start drag cursor.mousemove -> cursor.Xpos = mouse.Xpos cursor.mouseup -> stopdrag but it's not working properly... when i click on the cursor and i'm dragging the cursor doesn't follow mouseMove... and when i mouseup tha cursor doesn't stop to follow the mouse..... maybe i made a mess.... or probably there's a different way to obtain it.... can u help me? with any example?
  6. is it possible to draw a color mask to then apply the trasparencyKey metod to obtain a Form with a praticular shape, the mak's shape? thank u
  7. kante

    webbrowser

    is it possible to catch the events of a webbrowser into a vb form? e.g. to catch if the user clicks on a ok button or on <A> link into the loaded page... and communicate it to the program? thanks
  8. kante

    webbrowser

    is it possible to extend the webbrowser class to teach it to read not just the common files like html but also other files like encripted html ? so the html project will not be visible without my webbrowser vb.net application.... do u have any examples of this? Thank you
  9. kante

    App.Path

    in VB6 i used App.Path to retrieve my application path. in VB.net "App" doesn't exist anymore... Can u help me? thank you
  10. :eek: i'm not expeting anyone to write some code for me.... i just asked that 'cause i posted this thread in the VB6 forum and a guy sent me an address book application that was perfect... bu t i couldn't open that vbproject with vb.net(for the reasons we know... the converter vb6->vb.net sometimes needs some manual actions at code level to work properly) now i attach that application... i'm not asking you boys to convert it.... but if anyone is so gently to do that thing ....:D thank you database.zip
  11. it's about a week i'm looking at visual studio.NET i found it better than visual studio 6. i appreciate a lot the try to make visual c++ and vb similar.... but this morning i found the bad thing.... my vb.net c# and vc++ applications need the 30Mb of framekwork installed to work ..... is there another way to develop vs.net application to all platforms? is there a solution to overlap this obstacle? a patch to add to the application to make it visible on machines where the Framework is not installed?
  12. a simple addres book ... to see how local database works?
  13. i'd like to have the source code of an example in vb.net taht shows how to manage a local databse creating db and tabkes... inserting updating deleting....etc... thank you
×
×
  • Create New...