Re: inet.GetChunk usage ? Programming Software Development by jeanray Inet is instanciated, and the method is invoked at design time. inet control not getting the correct html source Programming Software Development by lalchetian Function GetHTMLPage(Inet1 As INet, ByVal url As String, ByVal filename As String, ByVal proxy …) As String Dim fnum As Integer On Error GoTo errorfetch INet.Cancel INet.proxy = proxy errorfetch: nme = Form1.Caption GetHTMLPage = Inet1.OpenURL… Re: inet.GetChunk usage ? Programming Software Development by AV Manoharan [quote=jeanray;388601]Inet is instanciated, and the method is invoked at design time.[/quote] see inet and inet1 are two things. my question is whether inet1 is instanciated or not. If yes, whether it is globally done? if again yes, when you type the period after inte1 is it showing the methode GetChunk ? inet.GetChunk usage ? Programming Software Development by jeanray Attempting to read the Shoutcast stream using inet. I connect ok, I receive streams. But I can't … Re: inet.GetChunk usage ? Programming Software Development by jeanray … question is more "how can I find out waht inet (winsock) PUTS and RECEIVES (in binary format, raw data), on… Inet (Microsoft Internet Transfer) control's Usage Programming Software Development by evry1falls …'s a big problem when working with Internet elements like Inet FTP that it's not allowed to use spaces in… WIFI for Inet + Wired for LAN Hardware and Software Networking by Rogerll … to severals applications. Usually i cant connect to inet via this NET lan, but some times I …the LAN i can access the network but not inet. Since here all is normal. But, if …is focusing on the LAN (wire) then the inet service from the Wifi is not working. If … navigate, as soon as i connect the Wire, inet stops but i can access the LAN. Then,… VB6 Inet FP Programming Software Development by harn991982 … have one silly question to ask about inet ftp... i was trying to ftp using inet ftp in vb6, but keep getting… any component or add any reference prior to use this inet ftp function? appreciate your prompt help on this... thanks alot… alternative to inet control Programming Web Development by akoloff It seems like my hosting server does not support inet activex control for whatever reason. Is there any alternative to the inet control to retrieve the contents of url I'm looking for? Re: alternative to inet control Programming Web Development by william_stam explain? ive never heard of inet activex before. if you want to send info through a url it request.querystring("id") would retrieve testing from test.asp?id=testing Re: alternative to inet control Programming Web Development by Ariyawansa Good day, Alternative to the INET control, you can make use of the WebBrowser control in .NET, with "AllowWebBrowserDrop" property turned Off. have a look at the link [URL]http://msdn2.microsoft.com/en-us/library/sxc145fz.aspx[/URL]. Cheers Krishan Ariyawansa Re: alternative to inet control Programming Web Development by Ariyawansa … similar issue. In the future if some one searches for INET issue, they will be getting an answer from this page… Computer Locking Up when Access Inet via IE Hardware and Software Microsoft Windows by techpro51 …. Same symptoms as before. I can get on to the Inet via AOL, and everything works fine as long as I… InetCtls.Inet control problem Programming Web Development by akoloff Ever since I added InetCtls.Inet control to my ASP pages I started experience the following … Downloading an mdb file using INET Programming Software Development by No Pain No Gain … in an unrecognised format. Is it not possible to use Inet for downloading an Access database? Dim strURL As String Dim… Re: inet.GetChunk usage ? Programming Software Development by AV Manoharan I strongly believe that your Inet1 object variable is not instantiated to invoke the methode GetChunk. If you have done, see that the Object is created Globally so that your function Inet1_StateCanged() can access it. An easy methode I will tell you. The moment you place the period(dot) after the Inet1 if GetChunk is visible as a methode there … Re: inet.GetChunk usage ? Programming Software Development by QVeen72 Hi, Dont Check In "icResponseReceived" State , Check in "icResponseCompleted" State. Shift the whole code in Select statemnet from 8 to 12 Regards Veena Re: inet.GetChunk usage ? Programming Software Development by AV Manoharan If you check in icResponseCompleted state you are likely to lose the beginning of the stream. Re: inet.GetChunk usage ? Programming Software Development by jeanray Yes! Re: inet.GetChunk usage ? Programming Software Development by AV Manoharan Between line 23 and 24 just insert a MsgBox ( at line 24 after the first capture!) MsgBox "I got first 512 bytes" run the program. If the program popups "I got first 512 bytes" get back to me Inet control handling Programming Software Development by millanskie [code] Dim strURL As String Dim bData() As Byte Dim intFile As Integer strURL = "http://localhost/aaa/1/3/test1.jpg" intFile = FreeFile() ' Set intFile to an unused file. bData() = Inet1.OpenURL(strURL, icByteArray) Do Until Inet1.StillExecuting = False ' WAIT DOWNLOADING... DoEvents Loop Open &… Re: WIFI for Inet + Wired for LAN Hardware and Software Networking by DimaYasny route /? and do a lot of reading there. Re: VB6 Inet FP Programming Software Development by abu taher The problem is that you have not declared the variable Inet1, which you do with Dim (or Private/Public). it should be declared in the declarations section at the top of the code (just under Option Explicit). or in module. Re: VB6 Inet FP Programming Software Development by harn991982 [QUOTE=abu taher;1085914]The problem is that you have not declared the variable Inet1, which you do with Dim (or Private/Public). it should be declared in the declarations section at the top of the code (just under Option Explicit). or in module.[/QUOTE] thanks alot.... =) i get it works now... Re: VB6 Inet FP Programming Software Development by abu taher so please mark it solve. Re: alternative to inet control Programming Web Development by jbennet this thread was from 2005, so i think its probaby solved ;) Re: alternative to inet control Programming Web Development by Andy Greenwood Wow! I get your drift. Re: Computer Locking Up when Access Inet via IE Hardware and Software Microsoft Windows by TallCool1 [QUOTE=techpro51]The subject line is just part of the trouble. Let me first give the symptoms. About 10 days ago, we started having trouble accessing Hotmail via IE on my home PC which is loaded with XP. We could access it 2-3 times after a reboot, then the computer would lock up or freeze.[/QUOTE] Start by going to the [URL=http://mjc1.com/… Re: InetCtls.Inet control problem Programming Web Development by campkev First guess, without seeing any of your code, would be infinite loop. Re: Downloading an mdb file using INET Programming Software Development by Comatose Are you sure that the database is in the same format (ie, did you make the database in Access 2007, and are opening it in 2003?)