Search results for query: *

  1. F

    Conceptual Question about Multiple Gui's in one app

    Thanks for the reply. I'm using Winforms. I'm not trying to present the data in different forms, however this is a client which will view web forms, active x pages, view text via a textbox, and also will view dataset information. All this will be done within the same box (gui area) so will...
  2. F

    Conceptual Question about Multiple Gui's in one app

    The application I am writing has several different interfaces that the user can go to with the press of a button. Now, currently, the user selects a screen with the press of a button, and rest are hidden (see below) ifaceScreen.Visible = False buttonSet1.Visible = False buttonSet2.Visible =...
  3. F

    Problem with INSERT INTO from a TextBox

    Okay, I have it working, but only when I press the button once, otherwise it puts in the same value over and over again (which I dont want) I've tried looping the parameter.add, but it throws this error: Additional information: Invalid index 0 for this OleDbParameterCollection with Count=0...
  4. F

    Problem with INSERT INTO from a TextBox

    I will give this a try when I get home in a few hours (codes at home, I'm at work =\) I will let you guys know how it goes. Thanks!
  5. F

    Question about MSMQ and Databases

    I have an app that recieves network traffic via MSMQ. Because of its structure, its perfect for what it does, however I want to archive specific messages after they are read. So, message gets sent, to Queue, recieved, and transferred to a database (locally) or thrown away. The easiest way...
  6. F

    Problem with INSERT INTO from a TextBox

    That's what I thought. However, when I used just TextBox1.Text in there, it wouldn't work.
  7. F

    Problem with INSERT INTO from a TextBox

    The Query is not inserting the the text from the textbox into the INSERT INTO form. It inserts a new record, but nothing shows. When I show the query in the other text box it shows: INSERT INTO Messages ([Text]) VALUES ('') I added the code and it does the same thing.
  8. F

    Problem with INSERT INTO from a TextBox

    Hello All, I'm having a problem with an app that is supposed to insert data from the Textbox into a database field. For simplicity's sake, I just created a simple app and isolated the problem. I cannot get the TextBox info to insert into my query. I've been spinning on this problem for...
  9. F

    Best way to send messages to a remote computer queue?

    Hello Everyone, I'm working with an application, and originally I planned on going the MSMQ route, I'm not 100% positive this is what I need to do. - The application is connected remotely and does not have a constant connection to the server. (It is technically a client application) -The...
  10. F

    Help with AppSettings file

    I learned that lesson the hard way :P
  11. F

    Help with AppSettings file

    Got it, I had to move it in my own function and out of the windows designer code area. Thanks for the help.
  12. F

    Help with AppSettings file

    Sorry, I noticed that after the fact. Its written as in post #6.
  13. F

    Help with AppSettings file

    Whats throwing me off is I'm assigning the variable on right side and on the left side, in order, it should work (and works fine on other appsetting references) but it doesn't. Dim testText As String = ConfigurationSettings.AppSettings("topTab3Text") Me.topTab3.Text = testText Could...
  14. F

    Help with AppSettings file

    Works perfect, one more thing, when I compile the code, I get a task error: The variable 'topTab3Text' is either undeclared or was never assigned. Dim set1B15Text As String = ConfigurationSettings.AppSettings("topTab3Text") Me.topTab3.Text = topTab3Text The application works, I'm just...
  15. F

    Help with AppSettings file

    Thanks, I was pretty sure the problem was using it as a string (makes sense) this should help alot. I'll let you know how it goes....
  16. F

    Help with AppSettings file

    Hello I'm trying to write an application that is extremely customizable. One thing I want to accomplish is for the user to be able to move a function to whatever button he desires by editing the AppSettings Section. I can modify the text of the button this way, but attaching the action has...
Back
Top