2,966 Topics
![]() | |
Ever since my team upgraded to Infragistics NetAdvantage starting with ASP.NET 2010 vol 2 from 2010 vol 1, I've been having nothing but troubles. Since there is a no backward compatibility between versions of NetAdvantage (2009 vol 1 controls cannot just be left in place if a different part of … | |
I wanted to make Win32 API applications to get the natural look and feel of the operating system's visual styles. someone suggested i include [code=c] #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"") [/code] in my code but he is using visual studio while am using codeblocks which just ignores the … | |
Hi, this is a very strange problem for me. I'm writing an app that uses the BouncyCastle API. I downloaded the jar file from their website and I put it in my project build path so as to use it, and it works. However, when I try to run the … | |
[B][I]Dear all,[/I][/B][B][I]I'm a beginer in GATE (General Artchitecture for Text Engineering).[/I][/B] Now, I had a problem when I embed GATE into java and I run Gate's examples such as StandAloneAnnie.java... It didn't error. But when I run project (StandAloneAnnie.java) then has a message "one or more projects were compiled with … | |
Hey guys, check this out: [CODE] File test = new File(path + "person.data"); FileOutputStream fos = new FileOutputStream(test); ObjectOutputStream oos = new ObjectOutputStream(fos); Person p = new Person(); Person p2 = new Person(); p.setName("Sub Zero"); p.setGender("Male"); p2.setName("Sonya Blade"); p2.setGender("Female"); ArrayList<Person> people = new ArrayList<Person>(); ArrayList<Person> people2 = new ArrayList<Person>(); people.add(p); … | |
I did exercise 2) of chapter 9 in Stroustrup's book. That chapter is about classes, its members, enumerations, constructors, etc. This is my first attempt at writing a program with classes containing public and private members that are both data variables and functions. It compiled and ran correctly,BUT. The exercise … | |
Hey guys, i really need some help with a really frustrating problem im having, my pc has been sat in the corner of my spare room for about 2 years, then last week, i thought id rebuild it, so i went out and bought a new motherboard, processor, ram , … | |
![]() | I've been kicking around the idea of doing a 3d game in my spare time, but I am struggling when it comes to actually setting up an application from scratch in such a manner that the different aspects of the application are separated into different projects in my IDE. I … |
Hi, I'm currently using Eclipse for a C++ project. I've used Netbeans and MS Visual Studio before and these IDEs conveniently store Header and Source files in 'virtual' separate folders I.E. in the project folder on the HDD, they're not physically stored in separate folders. However, since moving to Eclipse … | |
Hello everyone! Please, please put on light to my problem. I am using vb 2008 express edition and I am already almost half-way to the finish. When I already decided to create a report for my tables from an Access 2007 database, I found out that there are no Report … | |
I want to resurrect my old eMachines - the hard drive was bad so I dropped in a "new" one. I can boot from the restore CD to a DOS prompt. Ran FDISK on the 8 gig drive, then performed a format of the drive. No messages about bad sectors. … | |
Hello All, I am not sure, if this is the right place to post this query. If not, please redirect me. Here is the brief explanation of I have a web application (GWT application) project in Eclipse. I have a server side code which interacts with LDAP directory for some … | |
I have a hp pavilion 9720us laptop. I have the error message operating system not found. It was woriking perfectly until I inserted a usb flash drive. It then went to a black screen with the error message operating system not found. I have tried taking the cmos battery out … | |
ok, so i finally have a mac...now with the help of the CD's (2) i got with the mac, i installed Xcode and Snow Leopard.. but the problem is, in Xcode i only have template for creating Mac applications or something like that...so plz help me on how to get … ![]() | |
Which is the best C++ IDE for windows that is free and where can i get it?I have tried downloading Code Blocks and Dev C++ but none of them works. | |
Hi, I can upload my files outside of the WEB-INF folder and to the path specified but am unable to upload them into the WEB-INF folder. I hope someone can point me in the right direction. Thanks!! IDE : Netbeans Server : Tomacat [CODE] public void doPost(HttpServletRequest request, HttpServletResponse response) … | |
Ok, this is very, very strange, and annoying. I declared this variable in my IDE: [CODE]long me = 2323237777777;[/CODE] And I get a compilation error saying that the literal 2323237777777 of type int is out of range. I don't understand. Isn't long supposed to be able to handle this type … | |
READ IT ALL BEFORE YOU START ************************** A possible workaround for the IDE #1 ERROR when using a Cable select (CS) drive in a Toshiba laptop. Once this modification is carried out the drive is accessable for flashing as a master/slave or region free (RPC1) subject to the F/W being … | |
Hi all, i've to make an introduction of what am i doing before start making questions. The goal of my work is to create an application quite like an IDE, for specific program development ( always in C++ ) and testing. Since the need of execute these programs under the … | |
Pyscripter seems to be hard coded to use versions 2.3 to 2.6, and skips over 2.7, moving on to 3.0 and 3.1 - niether which seem to play nice with Unix data. Considering 2.7 is Python.org's current stable release, does anyone know how to get Pyscripter to use it? I've … | |
It used to be, that when I would type: [CODE]#div{[/CODE] and hit "return", Visual studio would autocorrect to: [CODE] #div {[/CODE] as well as a number of other things. That is just the easiest example. It also doesn't automatically indent the next line... I am using Visual Studio 2008 SP1. … ![]() | |
I have a new Toshiba HDD, MK4026GAX 40gb, and it works perfectly in most laptops except in my Toshiba Tecra 9100, when i fit it I get IDE #0 Error and can not get any further. I have been told that it works in Compaq laptops because the firmware is … | |
![]() | Hi sorry about this kind of nooby question but i have started learning java and i am making a Chat Application, i am making it using the killer game programming in java book. But i have ran into a problem. The Code asks me to import [CODE]import javax.servlet.*; import javax.servlet.http.*;[/CODE] … |
![]() | Hi well i had difficulty using javax.servlet; so i downloaded the class files of the sun website. but i dont know how to use them in netbeans ide 6.9? does anybody know how to import them into a project? i have the entire javax.servlet package(includes javax.servlet.http; )the class files are … |
Hello everyone, I really need some help. I am using a Asus M2N-SLI Deluxe motherboard and have ran many operating systems on it with no problem. I have installed XP on this same machine MANY of times. I wanted to install XP on one of my new SATA 1TB drives. … | |
Hello, I'm trying to create a program to calculate the factorial of variable int input. I am using xcode, and it's giving me an error saying "factorial was not declared in this scope" on the line within the else statement. I have found other programs on the internet, but I … | |
I am quiet new to using NetBeans IDE. I have created a file menu. When the user selects an option from the menu, a window should open,or a form should be loaded. So as far as i have figured out, the event needs to be handled by a mouseClick method. … | |
I'm trying to create a class that holds a 2D string array to be used by another class. For some reason, my IDE gives me a bunch of errors when I try to compile. Here's my code: [CODE]public class Lists { String[][] ListArrays = {"Why, Hello there!","Welcome.","blah blah blah","more useless … | |
what is the best C++ IDE that i can consider it as strtting point to use it in developing thank in advanced, IYad, | |
Hi all, Have been working with datagridviews with datasets, bindingsources, comboboxes, etc. I was having a problem that prompted me to ask a question. First, the problem that I was having. I created a datagridview that was bound to a dataset and then added code that created columns and some … | |
Hi , i download ADT-0.9.1.zip file but i cant add it to eclipse !!! please help me , how should i add this plugin to use eclipse to programming for android ??? | |
Hey, I hope this is in the correct place and that someone will be able to help out. I have an old computer, where I installed ubuntu 9.10 on and it told me that my 80Gb WD hdd was failing imminently. So I went and bought a 500Gb SATA hdd … | |
Not sure if this is the best topic to post this question. We had an issue where during uploading javascripts, they became corrupt and no longer executed on the web page. Is there an automated way to detect if the uploaded files match the source file to detect corruption? We … | |
hi i m using widos 7 64 bit home edition and want to use borlandC++ taht is not supported by 64bit OS so i install DOSBOX0.74 and try use borlnad in it but seems to me not working as it firstly dosbox can not able to initialize some of it … | |
Just replaced motherboard, cpu, ram. Knew enough to set bios to cd/rom to first. Now it won't boot up, won't start windows normally, and won't go into safe mode. It just repeatedly restarts. Other info: using the old ide cable from cd to hdd to motherboard. Asus manual recommends a … | |
Hi everyone. Im new here :) I did a search and found a few similar topics but was not able to narrow it down fro my specific issue. As I am not sure if its the flash move, my CSS, or the table code in DW Im a bit lost. … | |
Hello everybody, I have developed my software using NetBeans IDE 6.9: very simple, a db on a remote server, a JDBC:ODBC bridge connection in order to access it and everything was working fine, until I was ready to deploy it, and I fell in this problem of 32-64 bits conflict. … | |
I have two drop down lists in my form- catagory and the second one sub-catagory.When user selects a particular catagory corresponding sub-catagory should be displyed in the second drop down list for further user selection.I am using PHP-Mysql in dreamweaver.When i preview the first list is working properly but the … | |
Hey everyone. I got a pretty annoying problem with a nastie, which I would like some help to get rid off. When I sit on my computer with anything on my screen, it unhiglights everything I've highlighted after a few seconds. I've followed the steps in the "Read ne before … | |
Hello, If I am not wrong then the method with protected access modifier can be accessed by the same package and the sub-class outside the package. But I have problem regarding the same I have two packages p1 and p2, but when I try to access the method (protected) of … | |
Hi everyone: I need to find out about compile options in Xcode (I'm an Xcode and C++ newbie). The default compiler for OS 10.6 and XCode version 3.2.2 is apparently LLVM 2.0. Is this related to g++? Also, are there other compilers available within XCode? If so, how would I … | |
Hello I have a company laptop (HP 8530w) with Checkpoint Pointsec HDD encryption and 32bit Vista. I want to use win7 booted from an external eSATA drive. For that to work first of all I had to remove the internal HDD, because win7 install has already fucked my system up … | |
Hi, I have one more doubt in dreamweaver, how to export template based documents in a site to another site without include Template markup | |
Hi guys,i don't no whether this is the best place to ask this Queschen or the post this thread, Any how what i wonted to know is, As we know IDE (Integrated development environment) plays an important role in utilizing frameworks for Enterprise Application Development. so Very briefly describe this … | |
Hi, look I've been with a very frustating problem for like 2 or 3 days now, I have advanced but think I've gotten to point where cannot go any further I need some help and the sdn (business objects) forum regarding this topic simply suck, there's only one guy answering … | |
![]() | I am building a simple script editor which I want to function like Notepad, but highlight the scripting language's keywords blue and comments green, like what most IDE's do. I've got my application to essentially match Notepad using the built in EDIT window's class name, but I cannot get specific … |
Hi all, So, I'm a real newbie at this, and I don't even know where to start really. I'd appreciate some help. I've downloaded Allegro 4.9 onto my computer (running Windows Vista), and I want to use it with Code::Blocks IDE. I've tried many a google search, but none of … | |
Hi I have been trying to install the ERIC python IDE [url]http://www.die-offenbachs.de/eric/eric-links.html[/url] for a while now to no sucess. I could not i kept getting errors when installing the QT module [code] Determining the layout of your Qt installation... Error: Make sure you have a working Qt v4 qmake on … | |
I would first just like to say thank you for taking the time to read my post. Now onto the problem. When I switch on my computer to load windows xp it eventually states the following... [CODE]Novell Netware Ready Firmware v1.00 (940809) (C) Copyright 1991-1994 Novell, Inc. All Rights Reserved … | |
I have this great little program that I have made in the JCreator IDE. It has four class files. All of the classes are in a package called org.jfree.panning. They are listed as follows: XYPLOT.class* PanningChartPanel.class PannableXYPLOT.class Pannable.class * = Main Class There are also four .java files corresponding to … |
The End.