606 Posted Topics

Member Avatar for BestJewSinceJC
Member Avatar for hazelwize

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?

Member Avatar for hazelwize
0
121
Member Avatar for c3057788

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]

Member Avatar for c3057788
0
98
Member Avatar for T4gal

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]

Member Avatar for jbennet
0
76
Member Avatar for TheRobi
Member Avatar for Batol

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

Member Avatar for Batol
0
181
Member Avatar for eggmatters

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]

Member Avatar for eggmatters
0
95
Member Avatar for coveredinflies

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

Member Avatar for Ezzaral
0
133
Member Avatar for krany18
Member Avatar for vuyiswamb
0
161
Member Avatar for Sally123

[code] SELECT t1.Description, t2.Category FROM table2 t2 inner join table1 t1 on t1.ProductId = t2.ProductId [/code]

Member Avatar for dickersonka
0
112
Member Avatar for JasonDFR

[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]

Member Avatar for dickersonka
0
297
Member Avatar for juanma101285

looks good, minus joining on the city, not able to join on an id?

Member Avatar for dickersonka
0
66
Member Avatar for BobLewiston
Member Avatar for jsully1

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?

Member Avatar for dickersonka
0
100
Member Avatar for Itzon

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?

Member Avatar for dickersonka
0
90
Member Avatar for IMtheBESTatJAVA

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 …

Member Avatar for peter_budo
-1
176
Member Avatar for ARubert

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 …

Member Avatar for dickersonka
0
182
Member Avatar for MxDev

this is for sql express, but works the same [url]http://systeminetwork.com/node/26123[/url] on top of that, check your firewall

Member Avatar for fuzzyduq
0
93
Member Avatar for thangarajforyou

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]

Member Avatar for stultuske
0
397
Member Avatar for sivak
Re: hi

[quote] different version [/quote] set the reference to use specific version

Member Avatar for Jugortha
0
83
Member Avatar for Usha G

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 …

Member Avatar for Usha G
0
93
Member Avatar for Nbutz
Member Avatar for dickersonka
0
124
Member Avatar for dcasousa

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, …

Member Avatar for dansousa
0
239
Member Avatar for BobLewiston

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, …

Member Avatar for dickersonka
0
85
Member Avatar for BobLewiston

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 …

Member Avatar for dickersonka
0
17
Member Avatar for Trogan

1. very easy (mysql_connect) 2. believe you are looking for an insert statement 3. update, delete, and update statements 4. schema/user privileges

Member Avatar for Trogan
0
110
Member Avatar for axfv

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

Member Avatar for dickersonka
0
119
Member Avatar for zyaday

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]

Member Avatar for dickersonka
0
89
Member Avatar for gangsta1903

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 …

Member Avatar for gangsta1903
0
102
Member Avatar for ddanbe

think i found an answer an enum is static !!! [url]http://msmvps.com/blogs/luisabreu/archive/2007/09/07/c-understanding-enums.aspx[/url]

Member Avatar for ddanbe
0
193
Member Avatar for Sally123

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 …

Member Avatar for dickersonka
0
116
Member Avatar for schandrashekhar

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.

Member Avatar for schandrashekhar
0
82
Member Avatar for siriyal
Member Avatar for Achupa

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 …

Member Avatar for stultuske
0
833
Member Avatar for sivak
Re: hi

either timestamp or as long as you are doing inserts with an autoincrementing id [code] select * from table where idcolumn = max(idcolumn) [/code]

Member Avatar for dickersonka
0
116
Member Avatar for VernonDozier
Member Avatar for VernonDozier
0
5K
Member Avatar for semsql

the insert should take no time at all, are you sure its a locking problem?

Member Avatar for semsql
0
138
Member Avatar for LAMDB

[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]

Member Avatar for LAMDB
0
148
Member Avatar for yugoza

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

Member Avatar for dickersonka
0
112
Member Avatar for laks_samy
Member Avatar for dickersonka
0
77
Member Avatar for rubentan

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

Member Avatar for dickersonka
0
87
Member Avatar for MDGM

check and see if the last post here helps you out [url]http://www.webmasterworld.com/forum21/4619.htm[/url]

Member Avatar for dickersonka
0
408
Member Avatar for VernonDozier

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

Member Avatar for VernonDozier
0
107
Member Avatar for murderotica
Member Avatar for murderotica
0
146
Member Avatar for serkan sendur

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

Member Avatar for Ezzaral
0
98
Member Avatar for saneeha

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]

Member Avatar for bmdeveloper
0
2K
Member Avatar for C#Novice

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]

Member Avatar for C#Novice
0
118
Member Avatar for janamrob

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

Member Avatar for destin
0
121
Member Avatar for AIexplorer

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 …

Member Avatar for AIexplorer
0
269
Member Avatar for SubProf

just make sure not to call form.Hide() you might also show other forms as dialogs depending on your needs

Member Avatar for SubProf
0
130

The End.