199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for otengkwaku

Hi guys, i am working on a project the need me to convert a compressed obj file using webgl utf-8 compresor [webgl-loader](https://code.google.com/p/webgl-loader/) back to it acsii version. I will like someone to point me in the rigth direction. i am comfused as to how to do the decompression

Member Avatar for LastMitch
0
270
Member Avatar for turpentyne

I'm not sure if this is just a style-sheet issue, because there's a javascript component. But, what I have is a div set to cover the page, and a background image inside, set to cover. This works fine on a computer, but I noticed that it wasn't portraying correctly on …

Member Avatar for LastMitch
0
1K
Member Avatar for donoskaro

Hello Guys, During the process of making my website I have been stopped by a problem. Background Info: I am using jQuery sortable lists and I have multiple lists on the site which submit the information to the file that updates them in the database. Problem: If I want to …

Member Avatar for LastMitch
0
212
Member Avatar for game06

i can some one help me with jframe and panel. i want to create button using jpanel. i look online but they seem to have different ways to do it and i have no idea which is the best way to do this. ex some people extends jframe at top. …

Member Avatar for pbj.codez
0
256
Member Avatar for Pixelzzz

I have a numeric field that I am calling in from an access backend. If the length of the field is less than 6 digits, I want it padded with 0 at the front => as a leading zero/s. How do I implement it in crystal report? eg: 2567 I …

Member Avatar for GeekPlease
0
214
Member Avatar for otengkwaku

Hi guys i will like to know how to reprecate fseek(fp, -1) in C to python. Thus send the read head a charactor back

Member Avatar for TrustyTony
0
160
Member Avatar for new_developer

Hi there, Is there a way to check a variable if it is not initialzed by value ? I need a check for all datatypes. int num; if(!(numIsNotInitialized)) num = 12; else cout<<"num : " <<num <<endl;

Member Avatar for mike_2000_17
0
357
Member Avatar for JOSheaIV

Hey guys, maybe you could help shed some light on an issue I ran into while running a program of mine tonight. I have built countless programs around downloading webpage data and parsing it to retrieve data, but during a running of one of my programs tonight I got an …

Member Avatar for JOSheaIV
0
292
Member Avatar for arjani10

Hello!Somebody can help me please how can i autolink any word i have in my webpage autolink in php ? example array $word_list = array ( 'dogs' => 'http://dogs.com', 'dog' => 'http://dogs.com', 'cat' => 'http://cats.com', 'kitten' => 'http://cats.com', 'horse' => 'http://horses.com' ) any text dogs in my website corispond to …

Member Avatar for arjani10
0
887
Member Avatar for Database1234

I am completely new to database design, and have been given the following scenario. I have spent hours trying to work out how to draw an ERD for this scenario but am no closer to working it out. Does anyone have any advice for where i could start? I think …

Member Avatar for bhanks
0
240
Member Avatar for MasterHacker110

I am have been programming in C++ for a few years now. Now I would like to also learn assembly language. I have tried NASM, but I dont like it, it works better on linux and my main development platform is windows. I have also tried FASM, its better but …

Member Avatar for pbj.codez
0
380
Member Avatar for yy886

Hello all, I am new to WSDL, I have access to 2 pages of WSDL code and trying to figure out how to get them to output on the webpage... Can someone show me an example or point me a direction to look to? As for now theres tons of …

Member Avatar for yy886
0
205
Member Avatar for Start4me

I've wrote a game. But when I compile, and run the main method, there is an error, saying: No main methods found or something like that. I have one class called Game.java, which is supposed to be the main one, and gameLoop.java. For unknown reasons, gameLoop doesnt want to compile. …

Member Avatar for Start4me
0
356
Member Avatar for LeNenne

Hi I have a lstdata3 with 4 emails in it and I will that thoose shall come up in a textbox seperated with ; at the end of each. the lstdata3 list is with the checkbox enabled so I can choose wich I will use. a commandbutton is used to …

Member Avatar for LeNenne
0
127
Member Avatar for schroaus

You know how if you open up options in many applications you are no longer able to click to the side of the program until you have either hit ok or cancel. I was wondering if this is possible to do with a program in visual basic, and if it …

Member Avatar for tinstaafl
0
231
Member Avatar for xxmp

Hello I have a site. For not i just check the size of the image and if it is bigger than a size i just do not upload it. Is there a way to reduce the size and upload it later? Thank you DiskFileUpload fu = new DiskFileUpload(); FileItem fi4=null; …

Member Avatar for xxmp
0
301
Member Avatar for Rahul47

What is wrong with this type of assignment ? $name=array('ch' => 'chester' , 'mike', 'joe'); foreach( $name as $value) { echo $value; echo "<br>"; } Thanks.

Member Avatar for diafol
0
146
Member Avatar for rahul.pragma

REF: https://en.wikipedia.org/wiki/Content_delivery_network A content delivery network or content distribution network is a system of computers where our website is stored so it’s data (images/videos) can be served from multiple locations. However I dont want to use any online paid/unpaid CDN services but would like to setup CDN on my own …

Member Avatar for Dani
0
276
Member Avatar for Rahul47

count() and sizeof() both are used for retriving size of array. Are there more jobs that these two can do ? Thanks

Member Avatar for AaryaSiddharth
0
100
Member Avatar for jrosh

I am using StingBuilder.append("Address : {0}, {1}, {2} {3} \n", Street1, Street2, PostalCode, City); Problem is if Street1 or street2 is null String builder returns , ,code,city. I want to remove those commas(,) as well. how can i do that? Thank you in advance.

Member Avatar for gusano79
0
164
Member Avatar for games1124u

Hello all, i dont know how to fix this i made allot of forms but never with select option, what i want is to post the select option and to update database. here is the script could somebody explain me how to change this > echo '<tr><td><select>'; > echo '<option …

Member Avatar for diafol
0
189
Member Avatar for KatJ9

Hello! I'm writing a python script that will import all the excel files in a folder and write them into a SQL Server table. The script runs if I just point it to a single excel file, but i'm stumped at setting up an iteration loop that will read through …

Member Avatar for KatJ9
0
481
Member Avatar for Mr.M

Hi DW I'm developing an ATM service and now I want to call the dispensor to dispence the amount enetered by the user after his/her balance has been validated, you don't worry about writing the validation balance code I wrote it so now I'm stuck here anyone who can help …

0
100
Member Avatar for karan.rks

hey everybody im new to java i have a book and im learning the language from it but i want to know a compiler where i can run the programs i have "IDEA" but it is really confusing can anybidy help me please???

Member Avatar for stultuske
0
198
Member Avatar for new_developer

Hi there, I am implementing the concept of polymorphism and write following program of shapes. #include <iostream> using namespace std; class Shape { protected: double width, height; public: void set(double w, double h) { width = w; height = h; } virtual double get() { return 0; } }; class …

Member Avatar for new_developer
0
184
Member Avatar for Tinnin

Hi All, I am running the following query: UPDATE YFR_Master_Fundraisers SET FRActive=0 WHERE FRNameCode IN ( SELECT FundRaiser FROM YFR_Master GROUP BY FundRaiser HAVING MAX(CollectionDate) < DATE_SUB(CURDATE(),INTERVAL 2 MONTH) ) It is giving the error described in the subject line. The query seems to be taking too long and timing …

Member Avatar for Tinnin
0
648
Member Avatar for abra_ka_dabra

How do i get the key of "tradeid3" ? Is there any inbuilt method that does it? import java.util.Map; import java.util.HashMap; import java.util.Iterator; public class abcd{ public static void main(String args[]){ Map m= new HashMap(); m.put("TRADEID1", "tradeid1"); m.put("TRADEID2", "tradeid2"); m.put("TRADEID3", "tradeid3"); } }

Member Avatar for stultuske
0
176
Member Avatar for davidjennings

Hi All - I am trying to modify the below script. Currently on page load the page will display the click image and the message in the dialog box. What I want to do is do it the opposite and just have the click image display and on click the …

Member Avatar for davidjennings
0
336
Member Avatar for nish123

Hey frndz i m new member of community..!! . . i jst want to knw is there anyway to get the previous month starting and ending date and which is the previoes month..!!!! . . . . hope for positive reply..!!

Member Avatar for Webiswide
0
15K
Member Avatar for cumadhu

Hi All, I would like to know when to use web.config and when to use machine.config? I need the answer at the earliest. Thanks and with regards, Madhusudhan

Member Avatar for perezvarm
0
658
Member Avatar for webmoster

Help me! I have a domain, I would like to handle subdumain with .htaccess file. for example: http://usa.hotbizzle.com or http://india.hotbizzle.com should not redirect to sub folder. URL should not change in the browser but it has to call a file php file and give result. Is there any possibilities in …

Member Avatar for webmoster
0
302
Member Avatar for P.manidas
Member Avatar for mjsmitten

There is something wrong with this foreach. The last value from $myregions is not picked up but has again the second value 'georgia': <?php $myregions = array('florida','georgia','delaware'); foreach ($myregions as $value) { myfunction(array('region'=>$value)) ; if(count_items()>1) { if(has_items()){ draw_item($class); } } } ?>

Member Avatar for mjsmitten
0
141
Member Avatar for general2012

i've written these codes to evaluate a total heat transfer.but there are some problem arrived #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int *temp,*thick,*area,*cond,total_temp,n,i; double q,total_other; temp=(int *)malloc(20 * sizeof(int)); thick=(int *)malloc(20 * sizeof(int)); area=(int *)malloc(20 * sizeof(int)); cond=(int *)malloc(20 * sizeof(int)); printf("how many slabs?"); scanf("%d",&n); for(i=0;i<=n;i++){ scanf("%d",&temp[i]); } for(i=0;i<n;i++){ scanf(" …

Member Avatar for general2012
0
249
Member Avatar for ahudson

Hi. Not sure where to put this but basically I have a form. There are two buttons. One says submit and the other says print form. How do I make sure that the user has clicked the print form button before the form gets submitted. For example, a user fills …

Member Avatar for arunmagar
0
3K
Member Avatar for nitin1

int a[]={1,3,4,5,7}; int b[]={2,3,5,6}; int m=sizeof(a)/sizeof(int); int n=sizeof(b)/sizeof(int); cout<<m<<" "<<n<<endl; this code prints 5,4. but when i pass the arrays to some function and then i print the m,n values then it is printing 1,1. i know that they are acting as pointer when i pass then in function and …

Member Avatar for Banfa
0
120
Member Avatar for vishalonne

If I have a datagridview of say 7 Rows and 27 Columns and if I need to compare the values of cells with another cells how to do it? Detail: I need to compare 1st Row cell value with rest of the 6 rows cell values, same thing repeats for …

Member Avatar for ddanbe
0
4K
Member Avatar for oosinoots
Member Avatar for adam tolstoy
0
157
Member Avatar for trisha mehta

hello, i have to write a java code using socket programming to transfer all the files from one server to another server keeping the size of the files intact (i.e create a backup of the files in another server). i am new to socket programming. so i would really appreciate …

Member Avatar for trisha mehta
0
5K
Member Avatar for Cameronsmith63

Can anyone help me with the easiest, or most efficient way to browse through files and folders? Background: I'm trying to create a media player application, that browses through folders and when i click on a file, it must do whatever it has to with it. So i got the …

Member Avatar for tinstaafl
0
178
Member Avatar for Rahul47

What is need of Associative Arrays when Indexed arrays is present. Please Suggest. Thankx.

Member Avatar for Rahul47
0
100
Member Avatar for laguardian

Hey guys! I'm trying to create a program that first asks the user for an integer input *n*. The program will then ask the user for *n* Strings and store these in the array. This is what I have so far: public static void main (String args[]){ String[] strArray; int …

Member Avatar for stultuske
0
526
Member Avatar for gilgil2

Hi I am having a problem with the following line: $query = mysqli_query($link, "UPDATE `getgigs` SET `venue` = '$venue', `town` = '$town', `phone` = '$tel', `website` = '$web', `email` = '$email', `address` = '$add' WHERE `rock` = '$url'") or die("Error: ". mysqli_error($link). " with query ". $query); It is telling …

Member Avatar for arunmagar
0
155
Member Avatar for TheOneTopCat

I need to populate a listbox from a textfile that contains data from a workshop class. The class contains the definitioin of the properties (FIELDS) of the workshop class. The text file looks like this. 0\3\800\Programming in Java 0\3\800\Programming in Visual Basic 0\3\800\Programming in C# 0\5\1500\Advanced Java 0\5\1500\Advanced Visual Basic …

Member Avatar for GeekPlease
0
563
Member Avatar for ferdinandmucos

Having these questions and answers hard coded. I want to be able to read them from a text file and load the arrays questions with questions from questions.txt while also read answers array from answers.txt. but at the same time maintain my data structures used. How should I go about …

Member Avatar for arunmagar
0
268
Member Avatar for NitsPatel

hello, I use jcarousel in my (opencart)website for slideshow.slideshow shows perfect in google chrome but, not working in mozilla . So, Please Someone help me solve this problem link : http://dejavutrends.com/ thanks in Advance

Member Avatar for NitsPatel
0
156
Member Avatar for DavidB

Hi, folks. I would like to start posting a few C++ code snippets and thought I would start with something well-known and simple: a Quadratic Equation Solver. I am trying to be as thorough as possible, so am also considering the possibility that a non-quadratic equation might be fed into …

Member Avatar for DavidB
0
337
Member Avatar for sanyam.mishra

I got some source code on net for displaying 256 bit bmp in turbo c++ which is using some assembly codes (actually using asm---about which I don't know anything). Unfortunately during compilation it give an error saying "286/287 instructions not enabled". Help me troubleshooting this problem.

Member Avatar for sanyam.mishra
0
727
Member Avatar for pwolf

I have been trying to get my database insert and delete to work for a long time now, and I still cant get it working. I now have just 2 hours left before I absolutely have to have it finished and I can only insert numeric values. I suspect im …

Member Avatar for pwolf
0
241
Member Avatar for mridul.ahuja

Normally it seems that every vb 6 compiled exe file requires atleast MSVBVM60.DLL in Windows system folder, is there any way to make a **standalone exe** (without any dependencies) ?

Member Avatar for Reverend Jim
0
154

The End.