606 Posted Topics
Re: try this [code] Character.isLetter('1'); [/code] | |
Re: well what language are you using and is it web based or application based? also could you be a little more specific about the problem? | |
Re: here are two links to set up clustering [url]http://dev.mysql.com/tech-resources/articles/mysql-cluster-for-two-servers.html[/url] [url]http://www.howtoforge.com/loadbalanced_mysql_cluster_debian[/url] | |
![]() | Re: if you are asp.net you can use master pages, you can maintain the same layout / navigation for all the pages that inherit from the same masterpage or ssi (server side includes) here's link with the pros and cons of frames [url]http://www.webmasterworld.com/forum21/4794-2-30.htm[/url] |
Re: i'm assuming you are meaning k nearest neighbor? interesting stuff [url]http://en.wikipedia.org/wiki/Nearest_neighbor_(pattern_recognition[/url]) amazing batol, there is even a code link on the wikipedia page | |
Re: whoaaa, just use a dialog and i would use that ref, just use, properties in the second form [code] Form2 form2 = new Form2(); form2.ShowDialog(); if(form2.DialogResult == DialogResult.OK) { myClass class = new myClass(form2.IntA, form2.IntB); } [/code] | |
Re: fairly tough assignment to start programming with here is an example with a single circle [url]http://www.java2s.com/Code/Java/Swing-JFC/BouncingCircle.htm[/url] you can use that concept, on top of the bounds, you can check the other circles positions | |
Re: lol yes get your equals symbols in order you are try to check its state, not set it | |
Re: [code] SELECT t1.Description, t2.Category FROM table2 t2 inner join table1 t1 on t1.ProductId = t2.ProductId [/code] | |
Re: [code] select p.p_id, post, p.u_id, u.profile_key, u.value from posts p inner join users_profile u on p.u_id = u.u_id [/code] | |
Re: hopefully not the first having trouble posting with post lol | |
Re: are you sure that is loading your xml file properly? for testing purposes try to hardcode it, then move it to the xml file [code] Class.forName("com.mysql.jdbc.Driver"); //continue with the other fields [/code] also, after that if you still get an error, what is it? | |
Re: little rough trying to put words into table structure, are you able to post the schema of those affected tables and just to be clear, you only need dimensions deleted that are not in both tables? | |
Re: if we do it, that will only get you as far as your next assignment, its the ol teach a man to fish saying i know you have quite a list of instructions, so break them down, focus on one account at a time, look at how it will be … | |
Re: Well one of the best ways is just as it is here. Join in on the forums, many people will make new posts about up and coming or new methods of doing things. Along with that conferences or seminars might help. I'm sure we all are on some Microsoft or … | |
Re: this is for sql express, but works the same [url]http://systeminetwork.com/node/26123[/url] on top of that, check your firewall | |
Re: friend lol, we do seem a bit hostile i can bet this is the sharekahn app i have saw tons of problems about just because i am nice, check out this link, the bottom post [url]http://forums.sun.com/thread.jspa?threadID=776507[/url] | |
Re: [quote] different version [/quote] set the reference to use specific version | |
Re: you probably want to move this to DBUtil and return a resultset from it [code] ResultSet rs = pstmt.executeQuery(); [/code] also unless its an abstract class with the prepared statement that you manipulate, i wouldn't try to declare in two places, either let it be passed in, or let it … | |
Re: [code] System.out.println(addBuddy(buddyName, server.userList)); [/code] | |
Re: agreed, def looks very good i don't know if you are wanting to keep track of this though [quote] Some employees are not assigned and perform duties not specifically related to a project. Some employees are part of a labour pool, to be shared by all project team. For example, … | |
Re: Definitely. You have experience. I'm in my mid 20's with about 4 1/2 years experience and find myself edged out sometimes by guys that are a little older, with more experience. Bright and motivated is the key, a lot of people just go to work, and yes some can code, … | |
Re: Its not necessarily like that. Its a good thing to have, but not a necessity. I am Microsoft Certified, but I don't think it gives me a whole lot of bargaining power. It definitely looks better than not having it, but not better than someone who has more experience and … | |
Re: 1. very easy (mysql_connect) 2. believe you are looking for an insert statement 3. update, delete, and update statements 4. schema/user privileges | |
Re: take a look at tools->internet options->tabs->settings->open links from other programs in : the current tab or window this might not fix it, but first things first | |
Re: i am figuring its because it has ip restrictions to connect to the server from other machines, take a look at the grant syntax look at step 5 [url]http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html[/url] | |
Re: you can do something like return a boolean [code] public boolean loadFile(){ boolean readFile = Boolean.FALSE; try { //load file readFile = Boolean.TRUE; } catch (IOException e) { e.printStackTrace(); } finally { if(in != null) in.close(); } return readFile; } //your calling code if(loadFile()){ //continue } else { //we need … | |
Re: think i found an answer an enum is static !!! [url]http://msmvps.com/blogs/luisabreu/archive/2007/09/07/c-understanding-enums.aspx[/url] | |
Re: yes populate combo1 with table1 valuemember productid displaymember description from combo1 handle event selectedindexchanged load selectedvalue (which needs to be productid) the line of code is in c#, but you can see the logic [code] int selValue = Convert.ToInt32(this.combo1.SelectedValue.ToString()); [/code] issue query [code] select id, category, productid from table2 where … | |
Re: Is the other page refreshing a panel or anything? You need to remember, once the page is loaded it won't make another server call to get your chat messages unless you tell it to. | |
Re: [code] CREATE database databasename; [/code] | |
Re: if you are calling getArms or getLegs why should that return void? when you call a getter something should be returned, i guess he is just wanting output, but anyway beyond my rant From i guess what he is wanting you need a list of Limbs in your abstract class … | |
Re: either timestamp or as long as you are doing inserts with an autoincrementing id [code] select * from table where idcolumn = max(idcolumn) [/code] | |
Re: nice job catching your mistake also do the the validate before repaint | |
Re: the insert should take no time at all, are you sure its a locking problem? | |
Re: [code] SELECT p.ProjId, p.ProjName, p.ClientId, c.ClientName FROM Projects_Tbl p left join Clients_Tbl c on p.ClientId = c.ClientId [/code] | |
Re: do supervisors and coordinators exist in different tables? you can have a fk to two different tables if they are users, just add a user_type_id to the users table and create a userstype table with entries of student supervisor coordinator | |
| |
Re: set identity seed to be able to change the 1 to a different number the padding with 0's is formatting, do it code side or in query, not store numbers in a database like that | |
Re: check and see if the last post here helps you out [url]http://www.webmasterworld.com/forum21/4619.htm[/url] | |
Re: you can pass parameters using [code] <applet ..... <PARAM name="param" value="value"> </applet> [/code] in your init [code] String param = getParameter("param"); [/code] just do conversion to int, but you are specify width and height already, but thats how pass them | |
Re: sort of depends, what version of outlook are you using? And are you using exchange? | |
Re: haven't used the first, have used visual source safe and just really didn't care for it i use subversion, very easy to setup, very robust and the client apps are good as well, the developers are constantly improving it also | |
Re: ddanbe gave the way c# does it, i would suggest to stay with some modification of that, try to stick with what the language gives you if its possible, rather than trying to mimic c++ here is an article the has an implementation of findfirstfile in c# [url]http://www.codeproject.com/KB/files/FileSystemEnumerator.aspx[/url] | |
Re: its not about the mac, its about the browser, safari i assume try to set this on the table style and see if it corrects it [code] empty-cells:hide; [/code] | |
Re: masijade is correct, i think its more of a convention to follow though just like your variable names [code] int MyAge,Age; //need to be named int myAge, age; [/code] and with the overrides its much easier to tell what methods are implementing its base class, than sorting through the code | |
Re: i think you are seeming to be worried about the load, vs the concurrency i would suggest using stored procedures with transactions there is no problem with inserts, as long as they won't bust unique constraints or allow a user to join against them, when data isn't finished being populated … | |
Re: just make sure not to call form.Hide() you might also show other forms as dialogs depending on your needs |
The End.