Topics
-
-
- *Experts*
- 3 replies
- 1.9k views
Instead of having the user have to hit F1, what if I want them to hit a button and open invoke the help provider... I'm not talking about just executing the chm process to open up a seperate chm process, I want to invoke it on the help providers process so if a user hits F1 on a different form, the same chm window is used. How do I go about doing this?
Last reply by qmp, -
-
- 1 reply
- 988 views
I was wondering if anybody could help me or point me to some sites having a good write-up of what I need. I'm working in ASP .Net with C# codebehind. I would like to put images out in a folder on my web server and somehow protect them so people cannot download them via a direct link to the image. I have been thinking of a few possibilities including putting the images into a SQL database instead of storing them on the web server but this would require a database hit for each page load. For my site, I want to create a control that will display small bitmaps of all the images in this folder on the left panel, allowing users to select the image they want to see the…
Last reply by talahaski, -
- 3 replies
- 1.8k views
Hello, I have been having quite a bit of trouble with Microsoft's datagrid. I am now thinking that it would be more economical to purchase a 3rd party grid. I have been looking around and have found several grids but so far have not found one that incorporates all of the features that I need. Perhaps this would be a good place to discuss the benefits and downsides of the numerous grids available. The features that I need for my project include... 1. Combobox column type that allows me to display a description from a 2nd table based upon the foriegn key value from the main table (valuemember, displaymember) 2. The ability to right-click and copy and past…
Last reply by samsmithnz, -
app.config
by Baiano-
- Administrators
- 3 replies
- 1.4k views
Hi All! I have a problem with my application c#. When i install it, and change anything in app.config, it doesn't work?! I get a error of access of memory?! Anything has an idea? Thanks!
Last reply by Baiano, -
-
- 0 replies
- 873 views
I'm trying to link to a particular spot in a pdf from my aspx page and using a javascript function that opens them in a separate window. I have a central place that I keep my javascript - this is the function: function PDFPop(filename) { newwindow=window.open("DocPopup.aspx?DocId=" + filename,"PDFWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,screenX=200,screenY=200,top=200,left=200,width=800,height=600"); } I read that you can insert the #page=page_number into the url address, but this is how mine looks: <A class="nysiflink" href="javascript:PDFPop('NYSIFDBWebInstructions.pdf',800,600);">Need Help?</A>…
Last reply by taraf21, -
- 0 replies
- 951 views
Hi, I'm really having a hard time with this one. the program displays a model which uses Opengl. the user can navigate through the model as well. Also, the user can save the display as a bitmap file. The problem is: After I save the model to a bitmap file, I can't get back to the form display. This concept will also apply when you allow the user to open two display forms at once. How would you allow the user to switch between display forms? thus, how do you allow to pass the memory handle? hope, that is the correct question.
Last reply by bornbroke, -
- 4 replies
- 2.4k views
Hi all, Does anyone knows how can I avoid a messagebox to appear? I mean, i've an active-x that check the lpt1 port to see if the hardlock is present, and if not it displays an messagebox, Is it possible to kill this messagebox? Thanks in advance, Teixeira
Last reply by teixeira, -
- 1 reply
- 1.1k views
a while back I ran accross a sample app that showed the processor usage... kind of like taskman does.. but it was in the lower left hand corner of the screen and was transparent like.. it was always on top no matter what else was running. anyway.. it was kind of cool and I've learned enough I'd like to look at the code but can't find the example anymore. does anyone know what I'm talking about and if so.. can you point me to the code. thanks shannon
Last reply by EFileTahi-A, -
- 3 replies
- 1.3k views
Hi friends, I am developing a windows forms application. I am strucked up with a problem. I had two forms. Main form sub form. First i displayed main form and from main form i invoked sub form. later i want to exit from sub form nd display some information on main form. My program flow is like this class MainForm sub Mainform_load GetData() end sub sub btn_click subform.activate() end sub sub dislayData() me.label1.text="hi" end sub end mainform class class subform subform_load() showData() end sub sub exitbtn_click() dim obj as new Mainform obj.displayData()-----here i am calling main form method so as to…
Last reply by smriti, -
-
- Moderators
- Administrators
- Leaders
- 5 replies
- 1.4k views
I am trying to create an application, where if the user double on any places on the windows, it will show a messagebox displaying "this is double click". * any places on the windows means desktop, program files, My computer and any places in windows. Please guide me..
Last reply by georgepatotk, -
-
-
- Leaders
- 2 replies
- 1k views
can anyone please help me? (1) i need to do a keypress event as in when i type in something in a textbox and press the F1 button on the keyboard a new form will be pop out all the search results in datagrid format (2) when i choose the data i desire & click the OK button, the full information will display accordingly to all the text boxes to the previous form p.s: a picture of illustration is shown below..... http://i5.photobucket.com/albums/y178/frostierain/qn.jpg
Last reply by frostierain, -
-
-
- Leaders
- 2 replies
- 2.5k views
I've been searching for a way to do the following in VB.NET: for (Control c = someControl; c.Parent != null; c = c.Parent) { /* VB For loop syntax does not allow this (as far as I know). A Do While Loop could be used, but I'd rather have the variable go out of scope after the loop is done... */ } //-------------------- Control c = null; string text = (c != null) ? c.Text : ""; /* In VB.NET IIf would break if c is null since IIf is just a function call, and the result of c.Text is just a parameter... */ Does anyone know if there are equivalents in VB.NET? I don't know very much about the costs of the various operations in MSIL, but in the above scena…
Last reply by Jaco, -
-
- 0 replies
- 3k views
Greetings, Well I'm implementing syntax analyzer for C language made in C#. I have a sample grammer containing loop,s conditional statements and blah blah.............I wrote their first and follows and made a parsing table in an Excel sheet. Now I've two problems 1.How can I get Excels columns into arrays in C# to implement syntax analyzer through stack. 2. Is there another data structure so that I can use it to get parsing table into arrays to implement syntax analyzer through stack ??? I'm just having problems getting the elements of parsing table. Rest is ok with my project Thanks
Last reply by Roswell, -
-
- Administrators
- 2 replies
- 1.5k views
I wrote a program in asp.net VB. I want a user to be able to download a selected file from the application to there local harddrive. However, when a user clicks the download button it downloads the file onto the server, The computer that is actually hosting this page. How can I fix this problem. Any help given is greatly appreciated.
Last reply by lothos12345, -
-
- 1 reply
- 925 views
Hi! i have a datagrid that I load a dataview. after that, i want to do a if. like, if i found a cell containing "empty" string a change that same cell to a link "http://xpto". any ideas?
Last reply by kahlua001, -
- 0 replies
- 798 views
I developed a Visual Basic.NET application for use with a Crystal Report. When I open the form that has the Crystal Report Viewer, thus opening the report in a running VB.NET application, on it linked to the Crystal Report I developed, it is viewed with a huge gray box on the left and the actual crystal report is off to the right. This report is viewed correctly on all computers with this application installed except one. I am not sure why? Any help given is greatly appreciated.
Last reply by lothos12345, -
- 5 replies
- 1.4k views
I use a web service to write data to another program. To make the web service work, it wraps the .dll of that program and uses it to log in This week, for no apparent reason, the thing stopped working on my Windows 2000 Advanced Server. The error it throws tells me that it can't access the root directory of the other program I have a Windows app that works the exact same way. This works fine on the same server. Does this give anyone an idea of where my rights issue would be? I am stuck.
Last reply by Rothariger, -
- 1 reply
- 1k views
I created an ASP.NET program that is being used on my personnel computer, which is running XP Professional. The problem is that the Firewall on XP blocks any other computer on my network from getting to the program. The only way it works is if I turn off my Firewall. I do not want to do this, is there a way to open a hole in this firewall to allow other computer to use this ASP.NET application that I created. All computers using this app. are running XP Professional as well. And the application is written with VB. Any help offered is greatly appreciated.
Last reply by Rothariger, -
-
- Administrators
- 2 replies
- 1.1k views
OK, here's my code: - Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click Dim sFN As String Dim sLN As String Dim sJT As String Dim sUN As String Dim sPW As String sFN = txtFirstName.Text.ToString sLN = txtLastName.Text.ToString sJT = txtJobTitle.Text.ToString sUN = txtUserName.Text.ToString sPW = txtPassword.Text.ToString Const sConnection As String = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=HelpdeskApp;Data Source=MARK" Dim objConn As New System.Data.OleDb.OleDbConnection(sCo…
Last reply by Blokz, -
-
- 1 reply
- 1.1k views
Hi all, I need some help desperately as I have been spending ages looking around to find the best control to do what I want and code examples. What I want to be able to do is display a list with two columns columns 1 will say have directory, combobox, edit text, datetimepicker and then in the second column I need the controls to display i.e. on the directory row I would need a button that would open a directory list form. The data to populate this list will be hardcoded in (e.g. not from db table, and no extra rows would need to be added by the user). The problem is that I don't know 1) which would be the best control for this??? 2) how to write this in which ever …
Last reply by EFileTahi-A,
-
Who's Online 0 Members, 0 Anonymous, 67 Guests (See full list)
- There are no registered users currently online