Topics
-
-
- Leaders
- 3 replies
- 1.2k views
Is there any way to pass a windows application command line arguments or an equvalent? All I want to do is have a windows form that when you click the icon it opens and prompts the users for what they want to do. But I also want to run it at night so it can perform the standard set of options without use interaction, possible by doing this "C:\overnight.exe -Autorun". Is there anyway to accomplish this? Thanks, OnTheAnvil
Last reply by OnTheAnvil, -
-
-
- *Experts*
- 0 replies
- 10 views
This post has still not been addressed. There is a link on item 0 to fix the CS tags but nothing has been done and it's been at least 6 months. I plan on posting a message here every day until I get some kind of response. This specific forum was meant to get your attention, was it not? The last post in regards to the above thread was posted over a week ago and still no response. If you value your "support" staff here, please help us do our job and fix these tags. -nerseus
Last reply by Nerseus, -
-
- 5 replies
- 1.9k views
Is there anyway for a website to check for an installed application? Or is there a way to add to IE's information a header object so when someone visits a site, it knows the application is installed? Example, might be easier to explain. We have an application that an end user will install on their machine. Just a simple VB.NET application. On the website, the will click a button that will call the application with some parameters. This is working well. The problem, if the application is not installed, it gives them a page not found. What I would like to do, is when the user goes to this page, the page will know if the application is installed, enabling the button. If n…
Last reply by Rick_Fla, -
- 3 replies
- 3.5k views
Does anyone know of a function, method, namespace anything I could look into/use to extract icons from within the VBExpress ide or vb.net in general?
Last reply by Napivo1972, -
- 4 replies
- 2.9k views
I made a small program in vb.net that uses a Access database. Now I'm wondering: Do the users have to have Access installed on their computers to be able to use my program? I did a similiar program in vb 6 a time ago and then I solved the problem with including a .dll file so the users weren't access dependeble. Grateful for answers. Thanks!
Last reply by patdenim, -
- 3 replies
- 969 views
I have a Web Form that I want to use as a template page and place a standard header and footer in the page. I'm thinking of using Response.Write in the Page_Load to write the header. Is this the most efficient way, or should I use javascript? Also, how can I write the footer after the child form that inherited this page rendered it's content?
Last reply by michael_hk, -
- 2 replies
- 1.1k views
I have a default install of Win 2003 (no SP1) and IIS6 but I can't view classic .ASP files. I have made sure there is a definition for .ASP files in the settings, and I even added the IUSR_<machinename> account for permissions to the wwwroot folder. I can view .HTML files fine but I get the following error when trying to view a classic .ASP file. And yes I'm spelling the .ASP filename correctly and I'm absolutely sure it's in the directory. The page cannot be found The page you are looking for might have been removed, had its name changed, or is temporarily unavailable. -------------------------------------------------------------------------------- Pl…
Last reply by michael_hk, -
Is it possible to make a VB.NET program that communicates with an OOPic-R microprocessor? :confused: I would like to be able to read data from it and send commands to it. The OOPic has an RS232 Serial Port. Has anyone of you had any experience with it.
Last reply by Ontani, -
- 5 replies
- 1k views
i have a simulation running. each time the simulation cycles, data is collected. things like, startPosition, Duration, CollisionCount,EndPosition, CycleNumber.... i was going to store theese in an arrayList, but it seems inadiquate for the job. is there any other data storage type that might be better? ive been glancing at hash tables,but as of yet, im not fully sure if they suit.
Last reply by fguihen, -
- 1 reply
- 1.5k views
Hi All, I am currently having a problem identifying the number of columns and rows in a datagrid. He is my code: Dim rowCount As Integer Dim colCount As Integer Try rowCount = CType(Me.DataGrid1.DataSource, DataView).Table.Rows.Count colCount = CType(Me.DataGrid1.DataSource, DataView).Table.Columns.Count Catch ex As Exception MessageBox.Show(ex.Message) End Try The error I am receiving is: "Specified cast is not set" on "rowCount = CType(Me.DataGrid1.DataSource, DataView).Table.Rows.Count" line of code. Is this the correct way to be doing this? Any help will be greatly appreciated.
Last reply by SonicBoomAu, -
- 0 replies
- 704 views
I was wondering if someone could tell me if the following is possible, and perhaps set me on the right track: Create an ActiveX Web Browser on a form, navigate to a certain page, programatically click links on said page, programatically manipulate a drop-down box on the page, programatically click a button on the page, capture the pop-up web browser which comes up and parse the data from that browser. I would be most grateful for any help I might receive on this matter. Thank you. Michael Blaustein
Last reply by mblaustein, -
- 1 reply
- 734 views
i have a simulation running and in this i collect a lot of information. i want to save all this information in an excel document for analysis at a later date. how do i do this from within a c# application?
Last reply by Diesel, -
-
- *Experts*
- 0 replies
- 17 views
This post has still not been addressed. There is a link on item 0 to fix the CS tags but nothing has been done and it's been at least 6 months. I plan on posting a message here every day until I get some kind of response. This specific forum was meant to get your attention, was it not? The last post in regards to the above thread was posted over a week ago and still no response. If you value your "support" staff here, please help us do our job and fix these tags. -nerseus
Last reply by Nerseus, -
-
- 2 replies
- 784 views
Hi all, I'm trying to create a set of timers and store them in a SortedList identified with a number stored in a variable. All the timers will point to the same TimerElapsed handling code. Is there anyway to get the Elapsed code to recognise which timer elapsed? Thanks in advance. // Called each time need to add a new timer. System.Timers.Timer ClientTimer = new System.Timers.Timer(); ClientTimer.Enabled = true; ClientTimer.Interval = 5000; ClientTimer.Elapsed += new System.Timers.ElapsedEventHandler(ClientTimerTimeout); mTimers.Add(mintClientID,ClientTimer); The Timer Elapsed hadling code is below. private void ClientTimerTimeout(object sen…
Last reply by mjohnson3091, -
- 1 reply
- 923 views
I have been trying to select one row from a db, then change a field in it.. and update the row in the db. Here is my code: ---edit---- what am I doing wrong? I get no errors.. and the db isn't updated. Sorry for the dumb question.. but I have searched and search.. without an answer :/ /edit/ here is the answer: Dim RefID As Integer = DirectCast(sender.Tag, String).ToString Dim LookupAvail As String = DirectCast(sender.Text, String).ToString Dim Avail() As String = LookupAvail.ToString.Split(" ") Dim conn As OleDbConnection Dim connString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\db.mdb;User…
Last reply by mike55, -
- 1 reply
- 742 views
Hi I am trying to make a Template, BaseResource Class, to handle the clean-up of reasources derived from my classes. I have been working with the examples I found in MSDN on Implementing the IDispose Method. The problem I'm having now is with my Constructor; How would I pass it the handle of the instance? Also can anyone tell me if I'm practicing the proper methods here? Also how could I make this thread safe? Imports System Imports System.ComponentModel ''' <summary> ''' A template class for clean up ''' </summary> ''' <remarks></remarks> Public Class BaseResource '// Needed for GC(Garbage Collection) Implements IDisposable #Region "GC…
Last reply by antecedents, -
- 3 replies
- 816 views
Hi all, I am having a datagrid in my windows form application. when i select one of the row in the datagrid then another datagrid is to be displayed below that row. That is a datagrid is to be displayed with in a datagrid(between the rows of the first datagrid) Is it possible to display data between rows of a datagrid? If so please guide me with u r suggestions or any samples. Thanks.
Last reply by smriti, -
- 4 replies
- 757 views
I desparately need help because I am a coder being forced to design. I program in .NET (C# and VB) by day but I take a class at night. As an assignment for my class I need to build a webpage that has dynamic content pulled from SQL Server. I need a nice clean template to style my pages by. I have heard of what folks call a 'c-clamp' where you have a header, footer, and nav bar on the side. I have all three of these already in user controls. I just don't know how to get them lined up on the page the right way and then swap in my content. Do I use tables, divs grid layout, flow layout? I'm clueless because I don't have much experience in this. I can see why you would …
Last reply by VBAHole22, -
- 1 reply
- 746 views
I'm having a bit of trouble trying to display the time in the status bar so that it updates automatically to the current time. Can anyone help me and give me an example of how to do this in vb.net? cheers simon
Last reply by Diesel, -
-
- *Experts*
- 0 replies
- 13 views
This post has still not been addressed. There is a link on item 0 to fix the CS tags but nothing has been done and it's been at least 6 months. I plan on posting a message here every day until I get some kind of response. This specific forum was meant to get your attention, was it not? The last post in regards to the above thread was posted over a week ago and still no response. If you value your "support" staff here, please help us do our job and fix these tags. -nerseus
Last reply by Nerseus, -
-
Who's Online 0 Members, 0 Anonymous, 95 Guests (See full list)
- There are no registered users currently online