Topics
-
-
- *Experts*
- 2 replies
- 3.5k views
Hi again :) I've spent too much time reading around for information on this, and trying for myself.. I know it's probably something obvious that I'm not going to find.. I have a TreeView that scrolls vertically due to the amount of nodes, but *dosen't* scroll horizontally as there are no nodes wide enough to need it. However as a part of my app I have to set TreeView.Scrollable = false;, and later on, back to = true;. When Scrollable = true again, there's a vertical and horizontal scrollbar. None of the nodes have changed, they're all still far from needing horizontal scrolling. It seems that setting the .Scrollable property to true at runtime just automatical…
Last reply by 3xodus, -
-
-
- Administrators
- 2 replies
- 3.2k views
Perhaps a section or sub-section for book recomendations and book reviews would be nice. Book reccomendations are scattered throuhgout the forum and that always seems to be one of the first questions a person asks: "Can anyone reccomend good books to help me learn X" (where X = windows API, beginner VB.net, Direct X, C++, VC++ .net, etc...) This would be nice to have for a few reasons: It would bring all of the reccomendations people make into a single place (instead of smeared across more threads than can be counted)While reviews and such are avaiable on Amazon, Barnes & Noble and the like, there are a lot of resources out there and it is often times difficult …
Last reply by PlausiblyDamp, -
-
- 2 replies
- 2.2k views
I have been given a new project for the company I am consulting for in which I need to create a very basic mock up program to present for approval. I need to do this in .NET and unfortunately I am not very familiar. Once approved, I will be sent to training but I'm having trouble getting started. Here is a basic description of the project and if anyone could point me in the right direction it would be much appreciated! (please note, I have been on line researching and came up with some ideas but until I get some basics, this is becoming very frustrating, I do know VB and have learned Java and XML, I just don't know enough about .net to get started) In it's most bas…
Last reply by jennyb, -
- 1 reply
- 1.2k views
I am trying to upgrade this website. Currently, there are 20 or 30 asp pages. We need to secure the website so the user will have to login before accessign these pages. Right now, this is done with sessions between the asp pages Right now, our login page is login.aspx... And when we try to mix aspx and asp, the sessions do not work. We have to keep the functionality of the user being able to update the webpages via frontpage (so they can have dynamic links). The login page can be aspx though any ideas?
Last reply by trend, -
-
- Leaders
- Administrators
- 3 replies
- 934 views
I have a form that I have designed as a splash screen. I have a background color of 100, 0, 0 set on it. I set the background image of the form to this image. I set the Transparency Key of the form to the 100, 0, 0. Now on this machine I compile it and it works beautifully. However, when someone else tries it on their machine, the form comes up just fine, but the transparent portions are very visible. I also tried recompiling the code on a different machine and it still would not work correctly. Why will it only work correctly on this machine? Thanks, Chester
Last reply by cpopham, -
-
- 3 replies
- 1.1k views
If I have 4 1 dimensional arrays each declared like: dim Array1(120) as Single Is there a faster way of combining them into 1 2-dimensional array declared: Dim ArrayAll(120,3) as Single other than looping through all 120*4 values? :)
Last reply by mark007, -
- 1 reply
- 1.4k views
Hi All, Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Not IsPostBack Then lblMetricOrImp.Text = metricStr Else End If End Sub Private Sub rdbMetricOrImp_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles rdbMetricOrImp.SelectedIndexChanged If rdbMetricOrImp.SelectedIndex = 0 Then lblMetricOrImp.Text = metricStr Else lblMetricOrImp.Text = ImperialStr End If End Sub For some reason in my asp.net page when set a breakpoint on the SelectedIndexChanged of my radioButtonList I can see that the e…
Last reply by davearia, -
- 0 replies
- 754 views
Hello! I want to prevent my pages to be seen in history after user signouts. deleting cookies and ending session will prevent entering page on-line but the page will be still visible in history. How Can I chance this? As far as now Yahoo mail changes member peges to signin page after the user signouts. I want to do same :confused: Thanks advance.
Last reply by aliassce, -
- 0 replies
- 865 views
Smart device application, storage. Hi! I am about to build an smart device application for pocket pc. This application is going to work as an phonebook.. But I have a small issue.. I want you to help me find out the absolutly best way to store the contacts, so that the application will be as fast as possible.. Should I use an access database that comes with the program ? Thx in advance..
Last reply by Sandallic, -
- 2 replies
- 1.1k views
How to do in Visual C# that few windows (for example tools window, drawing window and etc.) will be active at same time.
Last reply by jmcilhinney, -
- 2 replies
- 795 views
im trying to get my program to check for updates like when the user clicks "Check for updates" how will i make it read a page that has the new version number ? i had something like this, but since i reinstalled vb when i build the app it crashes when checking for updates, help would be great.
Last reply by GrenadeFX, -
-
- Administrators
- 7 replies
- 1.6k views
I just read that Line Numbers can be used in VB.NET. I never even used them in VB6, but I'm curious if there's some advantage to using them, such as having the error message telling you the line # it crashed on, or something like that.
Last reply by JDYoder, -
-
- 4 replies
- 4k views
Hi there, Is there a way of making the corners of a groupbox round? Or do I have to make my own control for this? All the best Feurich
Last reply by feurich, -
- 8 replies
- 1.2k views
Hi! I kept searching and got no real help... So I decided to start structuring my one of my own. Now here's the deal :) I make the software and you guys give me your knowledge on the matter. Everything you have and know about the applications life cycle (thoughts, knowledge gain over time, specific situations, document templates you have and where you apply them... etc) In exchange I commit myself to: 1. Deliver 2 versions of it: 1.1. A commercial version 1.2. A community version (free with less functionalities) 2. Give a Commercial version to everyone who helps me on this. Again... I don't need coding help, just the already mentioned …
Last reply by mskeel, -
- 2 replies
- 1k views
Hello, i have two webapplications (webapp1 and webapp2), webapp1 its with integrated security, and webapp2 its with basic auth, i must from webapp1 login in webapp2 but i cant... :S i have this code... Dim strURL As String = "http://localhost/webapp2/webform1.aspx" Response.ClearHeaders() Response.ClearContent() Dim Wapp2WebRequest As System.Net.HttpWebRequest = CType(System.Net.WebRequest.Create(strURL), System.net.HttpWebRequest) Wapp2WebRequest.Timeout = 10000 Wapp2WebRequest.MaximumAutomaticRedirections = 50 Dim cCache = New System.Net.CredentialCache cCache.Add(New Uri(strURL), "Basic", New System.Net.NetworkCredential("User", "Pass", "domain")) Wapp2W…
Last reply by Rothariger, -
- 1 reply
- 1.3k views
Is there a way to pre-program an installation path for a developed application. That way when a user is trying to install the application all they would have to is click that "they want the application available to everyone" and just keep clicking next until they are finished. It will not even give the user an option to select an installation path in the install wizard. Or better yet during installation can I get the installation to look at a specfic location on the registry for the installation path. While the user is running the installation it will write to the registry the installation path then read that value and install it to that location. Any directories that do …
Last reply by Simcoder, -
- 11 replies
- 6.5k views
:mad: Hi everyone I have a 90mb CSV file which the application needs to read. I can do it using the OleDb or ODBC data classes but i am stuck on deciding what is the best way. Forexample , when we read large amount of data in a Dataset, doesnt it just uses up a lot of the memory? What is the best way to process a large amount of data from a source such as text files or csv files. Do we read the records line by line or do we read the entire file into a dataset or some buffer and then process it. Please advice as to what the best approach would be. Thanks.
Last reply by limeyredneck, -
- 4 replies
- 860 views
Hi, please help me make the case for migration to SQL Server... I've just joined a new company as lead/senior developer at the start of a 9 month winforms project, upgrading a VB6 rich GUI app that uses Access DB's as the backend (accessing them directly over the network - no object or data tiers). I'm not the PM and the project plan is already in place. They want to migrate to SQL Server as Phase 2 of the project - once the UI and object layers have been redeveloped against the existing Access backend - I want to migrate now, as part of the redevelopment. I am ashamed to say I am losing what should be a very straight-forward and persuasive argument. Please …
Last reply by samsmithnz, -
-
- *Experts*
- 6 replies
- 1.3k views
I am having a problem with an ActiveX.dll which doesn't seem to close out. In order for the program to work, I open a dBaseIV file like so: Dim myConnection As OleDb.OleDbConnection Dim myCommand As OleDb.OleDbCommand Dim myDataReader As OleDb.OleDbDataReader Dim strSQLQuery As String Dim sAccNo As String Dim i As Integer Dim sName As String Dim sRecID As String Dim sSeekFor As String = Request("ID") If Not Page.IsPostBack Then 'query the contact1 database strSQLQuery = "Select * from contact1 WHERE RecID ='" & Session("spassrec") & "'" myConnection = New…
Last reply by TheWizardofInt, -
-
- 2 replies
- 876 views
Hi All, I'm have a strange situation with SQL Server 2000. I am trying to paste this into a VARCHAR (8000): Admittedly this is a long piece of text but running a little letter count application I know that it is only 1211 characters long. However when I paste the above text into SQL Server I get this warning: "The value you entered not consistent with the data type or length of the column." I read on the web a little and discovered that somebody had this problem and they had used NVARCHAR instead which fixed it for them, this has not worked for myself though. Does anyone have any idea what SQL is objecting to? Thanks, Dave.
Last reply by Joe Mamma,
-
Who's Online 0 Members, 0 Anonymous, 15 Guests (See full list)
- There are no registered users currently online