|
XML works in console not in text boxes The console code is working just fine, but it isn't putting in the text boxes. P.S I'm using a while loop, but I'm only expecting one answer but I haven't found a good way to process one record. Private Sub btnFindByISBN_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFindByISBN.Cl... 3 Jul 2008 19:43
XML displays in console but not in text boxes The console code is working just fine, but it isn't putting in the text boxes. P.S I'm using a while loop, but I'm only expecting one answer but I haven't found a good way to process one record. Private Sub btnFindByISBN_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFindByISBN.Cl... 3 Jul 2008 19:43
Get session cookies from webrequest and pass then to new request I am making a console app that requests pages from our site one after another. Each request starts a new session, What I want to do is make all requests in the same session. How can I do this. I was hoping to be able to get the session back from first request and then set them on each further request. An... 12 Jul 2008 21:45
Visual Basic .NET & named pipes Hi all, Having some trouble using named pipes and Visual Basic .NET and would appreciate and help you could offer. Essentially I am trying to develop a simple client/server application that exchanges text messages using named pipes. The internet resources seem a bit scarce and the only Microsoft resource I can... 4 Jul 2008 05:55
ODMA-Application Hello, how can I write ODMA application and also register? It although a specification, but it is not clear. Has anyone a link to an example or framework that I continue expand. My idea is, in my application as GroupWise to represent Preview let. Similar to the preview in Outlook2007 for known applica... 3 Jul 2008 06:21
Problem with running EXE from a byte() array If I have this code: Dim fs As New System.IO.FileStream("C:\application.exe", System.IO.FileMode.Open) Dim br As New System.IO.BinaryReader(fs) Dim data() as Byte data = br.ReadBytes(Convert.ToInt32(fs.Length)) br.close() fs.close() Now data() contains the whole EXE in binary format, and I want to run the bi... 5 Jul 2008 05:23
connection to sql server 2005 problem Thank you for your reponse, is there a way to make sure all necessary services are running to open a connection? or at least to run all services manually so I can get this small code working? do you know which services could be potentially closed? Thanks again ... 2 Jul 2008 23:13
VB code to print pdf file Herfried; This works for simple format documents. I tried to use PrintDialog to allow more options as follow but nothing printed when user clicked on "PRINT" Printdialog1.PrinterSettings.PrintFileName = "C:\Test.PDF" PrintDialog1.ShowDialog() What did I do wrong? Thanks Bill "Herfried K. Wagner ... 2 Jul 2008 20:08
Get text "literally" from a TextBox Hi, I would like make a search and replace in a file, for that I need get the text in a textbox, but I need recognyze literally characters of the user like a commands, for example: The chain of the user is: "Hello world" & chr(64) & vbcrlf If I capture the textbox, I get: ""Hello world" & chr(64) & vbcrlf"... 3 Jul 2008 12:31
Marshalling: GCHandle Pinning vs Marshal.PtrToStruct & StructToPtr? I am calling legacy Btrieve database functions using StructureToPtr and PtrToStructure, but I think that I am getting memory corruption from improper marshalling, and I am unclear about when memory is being copied vs memory being pinned. Does StructureToPtr pin, or just copy? I've seen references to pinning memor... 2 Jul 2008 17:03 |