Topics
-
-
- *Experts*
- Leaders
- 8 replies
- 1.9k views
Is it just me or is the naming of the different file options completely bizarre? You can do: Find Symbol which means find the text in the specified places and give a clickable list of all occurences, Find in Files which means find the text in the specified places and give a text style summary of where it has been found, and Quick Find which means find the text in the specified files by going to each occurrence in turn. Quick Find is the slowest, Find Symbol has nothing to do with symbols and all three methods find occurrences in files, not just Find in Files. The difference between the methods is in the output and not in any of the things that their names would sugges…
Last reply by mskeel, -
-
-
- Administrators
- 1 reply
- 784 views
Hi all, I have a question about web methods in .NET Web Service. I know that it is illegal to have overloaded web methods in web service. But why? Does anyone know? Can I get some information about it somewhere??? Thanks, Carl
Last reply by PlausiblyDamp, -
-
- 5 replies
- 1k views
I have an application that searches a CSV document. The document has over 8,700 lines so it takes a few seconds for it to get through it, which is represented by a progress bar. I have a picturebox that acts as a button that triggers this sub routine. I have a stop button which I want to trigger while the search is running. The problem is, once I am searching, no matter where I click, it triggers the button that searches the CSV. I have tried Application.DoEvents() in a few different places and this hasn't fixed the problem. Any help would be greatly appreciated!! Thanks!
Last reply by kentheprogger, -
- 1 reply
- 838 views
I have grid , i think its a data grid, but im not sure. anyway, the textArray property is being initialised when a button is clicked. the second time around i get a subscript out of range error. how do i loop through each element in the array and delete it? this might seem like a basic question, but its years since i touched vb6 and dont remember much of it
Last reply by fguihen, -
- 0 replies
- 1.7k views
I have created a custom composite control that derives from compositeControl using vs2005 in C#. My control calls out to a web service that I created in a different project. It works well when I run it on my machine. Now I want to deploy it. I know that my client will not have the web services running off of my machine and I want to give them the ability to change the machine where the web services are run from. So my question is: how can I dynamically allow a user to set web service url references that my custom control will detect and use during runtime? The best case scenario for me would be if I could expose the web service url from a public property on my con…
Last reply by VBAHole22, -
- 1 reply
- 1k views
can someone clear me up on a few things. I've search for answers and the more I read and think I have it, there comes something that gets me *** backward. If I could get a deffinate answer on a few of these things it would just be superb. 1. is a datagrid same thing as datagridview? 2. what is the difference between dgv.datasource and dgv.databinding for the next question I am refering to this snip I found in VB2005 beta 2 help: ' Create a command builder to generate SQL update, insert, and ' delete commands based on selectCommand. These are used to ' update the database. Dim commandBuilder As New SqlCommandBuilder(Me.dataAda…
Last reply by tfowler, -
- 2 replies
- 1k views
Hi i need to make a current cell in the datagrid change it's background color or i need to put a sign on it to indicate that a certain value is special (not with the error provider) can i do it, please tell me how, and if i must use the error provider, how can i change the icon image to suit my need. best
Last reply by OmarB, -
- 1 reply
- 951 views
I've writting this code below which works perfectly with II 5.0 but does not work with IIS 6.0 code: Prt"<a target=frm_bottom href=""C:\FormsBrowser\Forms\Admission\cathlab.pdf"">" & cInstructions & "</a> " Does anyone know how to resolve this problem?
Last reply by honghaiping, -
-
- Administrators
- *Experts*
- 13 replies
- 23.7k views
Hello, I've got a form with a datagridview, if i press the mouse button on a record some textfields are filled with the data of that row. You can change the data in the textfields, and press a button to save the changes. The result is that the changes are saved into the MDB database. But my datagridview doesn't wanne show the new data. Only if i restart the whole program. I'll tried dataviewgrid1.refresh(), but that doesnt help me. Both do use another connection to the database. The datagridview is build with the wizzard. The save function is in a class. How can i refresh or close and open the databaseconnection ? The datasource of the dataviewgrid is: p…
Last reply by Jelmer, -
-
- 2 replies
- 5.4k views
I need to evenly space the columns generated by a checkbox list. What I do is populate the items of a checkboxlist from a database and as some values are longer/shorter, the columns space accordingly. Is there any way to make these columns evenly spaced? Thanks in advance
Last reply by moshecohen2001, -
-
- Administrators
- Leaders
- 6 replies
- 1.7k views
I am having a problem on vs 2003 IDE. I can't seem to browse at a decent speed . It takes up to 15 minutes to add a file. Everytime i open a directory the file browser hangs up to 10 minutes. I am getting this problem on my desktop and pc.
Last reply by snarfblam, -
-
- 0 replies
- 794 views
has anyone had any experience running ASP.net apps on mono? i'd like to hear them...
Last reply by bbolte, -
-
- Administrators
- 1 reply
- 4.8k views
I have two files in visual source safe one with global.asa and the other global.asax,global.asax.res, global.asax.vb. The global.asa contains the following: <SCRIPT LANGUAGE=VBScript RUNAT=Server> ' C.C. Financial Evaluation Model global.asa ' Copyright 2001 Zurich North America ' Corporate Customer 'You can add special event handlers in this file that will get run automatically when 'special Active Server Pages events occur. To create these handlers, just create a 'subroutine with a name from the list below that corresponds to the event you want to 'use. For example, to create an event handler for Session_OnStart, you would put the 'fo…
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 6 replies
- 2.3k views
I am trying to set up themes in ASP.Net 2.0 I set up an page load event that grabs the themes by checking the app_themes folder. Added some events for my dropdown list. There are 2 issues i am having 1. When i choose a theme from my dropdown it changes my themes. However when I choose the theme from the dropdown and the page postback the selected item is the first item in the list and not the theme I selected. The theme of the page changes, but the dropdown just defaults back to the first item in list. I am sure this has something to do with what I have the selected text/value equal too see code below. 2. The other thing I can't figure out is my session is not bein…
Last reply by gtjr92, -
-
- 1 reply
- 970 views
hi how do i go about creating tables in an existing access database from vb.net 2003?
Last reply by robojam, -
- 2 replies
- 857 views
How do I do partial classes? I've got a form which has a body of code which is logically a separate block, and I'd like to be able to view that block by itself. So I decided to put it into a partial class. This works OK, except that if I have it in the same module as the form, the form's designer won't show. If I have it in a separate module the form's designer will show but if I double click on that module vb creates an extra designer (a basic form) and inserts initialization code in my module for it. And then I can't open the designer for the form again. Hmm.
Last reply by rbulph, -
- 0 replies
- 1.6k views
Hi all, I am trying to use the crystal Selection Formula for Records. I am selecting all the data stored in a database table, and trying to use the following formula to select the records of interest. Here is the selection formula: if {@Type} = "1" then if {@GID} = "-1" then {SentMessages.MessageDate} in(cdate({@DFrom})) to(cdate({@DTo})) And {SentMessages.Org_ID} = {@Org} and {SentMessages.Msg_Type}="Email" else {SentMessages.MessageDate} in(cdate({@DFrom})) to(cdate({@DTo})) And {SentMessages.Org_ID} = {@Org} and {SentMessages.Manager_ID}= tonumber({@GID}) and {SentMessages.Msg_Type}="Email" Else if {@Type} = "2" then …
Last reply by mike55, -
- 3 replies
- 941 views
I am having trouble loading javascript from a file into my ASP.NET 2.0 page. If I copy the contents of the js file into my aspx page, it works. However, if I try loading it from the file called "NumericTextBoxKeyPress.js", it gives me a "A Runtime Error has occured. Do you wish to Debug? Line: 1 Error: Syntax error". Selecting yes takes me to the "NumericTextBoxKeyPress.js" file in Visual Studio, but does not highlight anything. What could be the problem? Contents of the "NumericTextBoxKeyPress.js" file: [size=2][color=#0000ff]<[/color][/size][size=2][color=#800000]script [/color][/size][size=2][color=#ff0000]type [/color][/size][size=2][color=#0000ff]= 'text…
Last reply by tfowler, -
- 4 replies
- 803 views
How can I make a certain file print with just a push from a button, Like a button that says: Print the file and when I push it, it prints a the file or shows that printer screen thing like in word where you can chose what printer to use and how many copies. thx in advance!!
Last reply by neodammer, -
-
- Administrators
- 1 reply
- 1.6k views
Hi, :D How do we pass values from one asp.net webpage to a textbox of another asp.net webpage? There are 2 asp.net webpages. Default.aspx and Frame.aspx. When I click on a button on Default.aspx, some text has to appear on the textbox of Frame.aspx
Last reply by PlausiblyDamp, -
-
Who's Online 0 Members, 0 Anonymous, 54 Guests (See full list)
- There are no registered users currently online