- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
30 Posted Topics
Re: You should also start by getting a beginning book on C# programming. | |
Re: Check out replication... this will accomplish what you need on the database side. Potentially clustering can help as well if this is a heavy load project in any geographic location... nothing to hard to understand/accomplish. In terms of design, you should brush up on that before writing a large scale … | |
Re: Sure as long as you get the configuration (hardware, i.e. - motherboard and individual RAM modules + sizes) right and you're running the 64-bit version of the OS [url]http://blogs.zdnet.com/Bott/?p=37[/url] [url]http://www.vistaclues.com/reader-question-32-bit-vista-memory-limits/[/url] Do you really need that much memory on a Vista workstation? Curious to what you are doing ... rendering perhaps? | |
Re: YOu're going to need to use the Oracle Data Provider for .NET a.k.a. - ODP.NET .... I'm pretty sure it can connect to 11g You can check out some resources (demos, tutorials, forums... etc...) here: [url]http://www.oracle.com/technology/tech/dotnet/index.html[/url] ado.net is a little different than classic ado, but if you last programmed in … | |
Re: [QUOTE=Duki;751898]Does anyone know of a compiler that will let you utilize WPF in Linux?[/QUOTE] Sorry for the late response, but since there is still no answer, I decided to add it as google brought me directly to this question... The short answer is No, there is not. Read on for … | |
Re: If you have a true network (not a workgroup) setup you can use a domian controller to do this. Assuming you have windows server 2000/2003/2008 you can add a logincript to the policy and have a vbscript (or PowerShell now) copy this to the machines. That way, whenever anyone logs … | |
Hi all, I have enabled and configured RRAS on my Windows 2003 server (IIS) machine to perform basic firewalling. I have enabled it and all works from the outside world, however, I cannot connect to the outside world on the machine. But the outside world (web users, FTP, etc...) can … | |
Re: you can use nullable types i.e. - int? myVar = ... ; you can also check to see if the value is = to System.DbNull... | |
Re: If you don't have a 1:1 ration then a bottleneck will enter the picture. The idea is that the one running faster will have to wait for the one running slower, so what's the point of even having it faster? So - you can then start to overclock by adjusting … | |
Re: The phenom is awesome. running a 9850 here - overclocked it to 3Ghz... on 4GB 1066 RAM... | |
Re: Do you have a need to connect/use foxpro? i.e. - does your company require that you connect to an old foxpro database or som'n? If not, then I would suggest using MSSQL server express, SQLite, firebird, etc... | |
Re: A redirect is logical and shouldn't take place on the 'network' layer of things. You can use a 301/302 redirect from within IIS to transfer your users to the new address. You can make a change in your DNS server to point the url/host to the new IP address on … | |
Re: You can also try and use nullable types (assuming you are using .NET 2.0 and up) - instead of declaring your variables like: int myFieldValue .... you can simply do the following: int? myFieldValue ... | |
Re: are you programming on a VAX/VMS!? lol your [programming] life would be a lot easier (at least for this task) if you did this in C#. Check it out - if you're familiar with C++ you should transition very well. The reason for the suggestion is that a lot of … | |
Re: Why are you creating your textboxes in the button click event? This doesn't make sense.. you are adding textboxes after the user clicks a button, then, without user input you are trying to perform a mathmatic operation on their values? unless you are setting these with initial values you should … | |
Re: I love vista. I recommend anyone upgrade who can - without being at risk for performance problems or compatibility issues with hardware. That said, there is really not much wrong with it - the mose security hardened OS from M$ yet... | |
Re: You have an asp.net application. You will need to create a directory on your filesystem and point an IIS virtual directory there. From there, you can run the site from your local installation of IIS. Optionally, you can load the files you have into your Visual Studio 2008 or Visual … | |
Re: Well i guess anythign is possible, but if you want to find out what is running - close all programs and stop most unneeded services on your machine - download process explorer from sysinternals. Close all programs and open it and look at your list of processes... then run netstat … | |
Re: Welcome Vinay! if you are new to devlopment I would not recommend learning classic asp - it's old and outdated!!! If you are learning for a project that has jumped on your plate, then i'm sure you'll find plenty of help here! | |
Re: You have a lot to learn. Go pick up a few books out there and learn a new subject. Since you mentioned access and sql server you are referencing Microsoft technologies.. go check out a few books on .NET (pronounced dot net) - you may want to start off with … | |
Re: It will resemble MFC, but from what I understand MFC is very clunky and complex to use. C# is a newer technology and has things built in that make development much quicker and easier. Also, C# is going to make use of WPF pretty soon, although, who is to say … | |
Re: check out codeproject.com or planetsourcecode.com ... also, which version of VB are you using? vb.net? | |
Re: You can use a single form for this or multiple forms (pages). You can use a database or xml storage layer to store information about the users. Actually, you can even use a text file if you liked, but it's best to probably use XML or SQL database... Next, you … | |
Re: Microsoft does not own the code you write simply because you used their tool to write it. You are under the wrong perception. | |
Re: First off- what language are you using vb.net or c#? You should verify the user entry is a # if that's what is expected... then convert it to a number vb = CInt/Int3.Parse(varNumber) then "post" this page to your 2nd page secondmemu.aspx - then do a request.form() for the textfield … | |
Re: haha... umm.... if you want to be a programmer - you HAVE to learn how to program. You DON'T need asp.net/ajax/mssql/javascript to create a webstie. You can just use HTML - but your site will be static only. If you want to take advantage of all the new technologies that … | |
Re: All the people who are CurrentVersion - 1 buffs are always behind in technology... but i guess this depends on yoru personality... | |
Re: VB6!??! ick... why don't you just intantiate an excel object and use that to traverse the data? | |
Re: if it's a newer version of mac os you can try installing mono @ [url]http://go-mono.com[/url] and then porting yoru code over to run on mono. You can also run mono on windows. mono is not compatible with .NET 3.x you will need to use 2.0 and lower in order to … |
The End.