Search results for query: *

  1. J

    Question Moving CSV to Datatable

    Hi, I am trying to open a comma-delimited file and put it into a database. I already searched this forum and did what was suggested. I still get an error that reads "Could not find installable ISAM" Here is my connection string exactly as it exists during runtime: I define it here: Dim cn As...
  2. J

    Write out XML as a file

    I have a string inside a VB.Net codebehind for an ASP.Net page. I would like to write this XML string out as a new XML file, specifying the file name, etc - the user should be prompted with the usual open/save/cancel dialogue. I assume I would need some sort of Response.Write or WriteFile, but...
  3. J

    Namespace and InitializeComponent()

    Hey thanks, that got rid of that error! Unfortunately, it then brought back the other one: Error 1 'Container' is not a member of 'ShellContainer'. The code it references is in Application.Designer.vb If I change it from Me.MainForm = Global.ShellContainer.Container to...
  4. J

    Namespace and InitializeComponent()

    Hi, I have a simple windows form. The form is named Container.vb and inside it is a class. When I put it in a namespace like so: Namespace Shell.UI Public Class Container : Inherits System.Windows.Forms.Form Private parentWorkItem As Shell.UI.Workitems.Workitems <InjectionConstructor()> _...
  5. J

    Dataview AddNew

    Bah, this doesn't work either = ideas? 'dvTopicList.AddNew.Row.Item(0) = -1 Dim test As Integer = CType(dvTopicList.AddNew(), Integer) dvTopicList.Item(test).Row.Item(0) = -1 dvTopicList.Item(test).Row.Item(1) = " Select All Topics"
  6. J

    Dataview AddNew

    Hi guys, I can't figure out how to add values to a new dataview row. The dataview already has data in it, in the form that the first column is integers and the second strings. When I add the new row, I can successfully add the integer value, but the string value remains null...
  7. J

    Change text box to autofit, expand

    Hi, if I am developing a windows application and I want to have a text box that reaches from the top of the app to the bottom (with a margin of ten pixels on the top, bottom, and right, and to cover approx 50% of the app) and auto resizes when the window does, how do I do it? When I drop a text...
  8. J

    Accessing web sites (not displaying)

    Thanks a lot Raven, that's exactly what I was looking for!
  9. J

    Accessing web sites (not displaying)

    Hi, I am wondering how a VB.Net application can access web sites. I'm not concerned with displaying the site within the application, but I would like to be able to go through a site automatically. Basically, I would point out a page (example, cnn.com) and the application would be able to do a...
  10. J

    String replace

    Hi, I am looking to to some string manipulation. I need to replace the last, and only last "." in a filename with "_thumb." String function "Replace" replaces all of them - is there a way to replace just the rightmost period? Thanks, James
  11. J

    WebSphere MQ with VB.Net

    Hi all, I'm not sure where this topic would belong, but perhaps you can help me. I'm trying to write a short application that takes ticks and makes them the message for IBM WebSphere MQ. The problem is, I'm not sure how to send messages via VB.Net with what MQ gives me. I've referenced the...
  12. J

    Resolved Missing System.Messaging.dll

    Ah, thank you very much! I didn't know that. :)
  13. J

    Resolved Missing System.Messaging.dll

    [Resolved]Missing System.Messaging.dll Hi, I am using VS.NET 2003 Enterprise and am trying to create a VB.Net application that will be able to pass messages to WebSphere MQ. Information I've come across recommends using System.Messaging - however, when I try to import it, it says that namespace...
Back
Top