-
Began Watching Website layout differs by device
Im having some trouble with my website layout changing by device. On my website the layout is perfect but on mobile and older computers the layout changes. https://imgur.com/a/UL8Mb Im guessing … -
Replied To a Post in Website layout differs by device
This has been kicked around for many years. I see you read one way so time to look into responsive web design. Google up that. -
Began Watching 'Format' is a type and cannot be used as an expression.
Hi I have an app that I compleated about 2 years ago with vs2010 and all is working. Now I just oppened the app in vs to make some additions … -
Replied To a Post in 'Format' is a type and cannot be used as an expression.
I see prior discussions. Find the word "fixed" in them. Example? https://social.msdn.microsoft.com/Forums/en-US/08764ba0-a2e2-4a86-89e6-da5d0fe0339a/format-year-and-datetime-function-not-recognized?forum=vblanguage This one has priors back to 2009 and maybe earlier. -
Began Watching Minhook cant hook undocumented functions
How do I modify minhook in order to be able to hook undocumented functions? I'm a beginner and this is beyond me. -
Replied To a Post in Minhook cant hook undocumented functions
After I read http://www.codeproject.com/Articles/44326/MinHook-The-Minimalistic-x-x-API-Hooking-Libra that makes sense to me. Later in that page I see other hooking efforts. -
Began Watching Netbeans (Java class) Help
I'm in a Java class we are using netbeans to create a program. I have the code in and it builds but it will not run. Can anyone assist -
Replied To a Post in Netbeans (Java class) Help
Try again but make something simple like Hello World. If that doesn't run, it could be some IDE or such issue. Since no one knows your setup, can you paste … -
Gave Reputation to RudyM in Switch error.
Case 2 should have its break statement outside the conditionals; it was within the `else` block. Case 3 needs a break statement. These were just small changes made here; I … -
Replied To a Post in Switch error.
Sorry, it's a mess. Let's read just a few lines. About line 3 you have your switch with numar. Then why are you using an if on line 6? Line … -
Began Watching How I do scan invoice to SQL server 2008 or to excel file or .txt
i scan my invoice and i had 5 column item_no ,descrption ,qty,unit price, total Amount and ihave 20 rows i need to trans rows to excel file or .txt i … -
Replied To a Post in How I do scan invoice to SQL server 2008 or to excel file or .txt
What do you mean by scan? 1. Barcode? Get a barcode reader and write a frontend to catch the input and more. 2. A printed page? That's OCR and you … -
Began Watching Switch error.
void PatratTexturat(PATRAT patrat, int numar) { switch(numar) { case 1: if(numar==1) glBindTexture(GL_TEXTURE_2D, id_textura[2]); else glBindTexture(GL_TEXTURE_2D,id_textura[3]); break; case 2: if(numar==2) glBindTexture(GL_TEXTURE_2D, id_textura[4]); else glBindTexture(GL_TEXTURE_2D, id_textura[5]); break; case 3: if(numar==3) glBindTexture(GL_TEXTURE_2D, id_textura[6]); … -
Replied To a Post in Switch error.
Why did you double test for numar over and over like that? (line 6) Your code is quite the mess. I'd clean it up and try posting again. -
Replied To a Post in Css class not working on mobile, tablets
Here's a thing. " make code totally browser in-dependent & os independent? " is something you know you never can achieve. We have to test for functionality but have to … -
Began Watching Css class not working on mobile, tablets
Hi, I have one CSS. .buttonSize { min-width : 58% } Actually, I have two buttons, with text "Hovers" & "Copy". My button without any css taking spaces which can … -
Replied To a Post in Css class not working on mobile, tablets
My first stop to see if there are issues is the Known Issues tab at http://caniuse.com/#feat=minmaxwh So yes it appears that web browsers based on web kit may have issues. … -
Replied To a Post in problem with CPU scheduling algorithm
Still looks incomplete code wise. I tossed the above into http://ideone.com/ and well, what's here looks incomplete so I can't guess what you are seeing. Back to you. Narrow down … -
Replied To a Post in problem with CPU scheduling algorithm
This code does not compile with Visual Studio or gcc. So I would be guessing what's missing. fcfs? In queuing I would guess that's First Come First Served. In such … -
Began Watching problem with CPU scheduling algorithm
I make a program to simulate the Shortest Job First algorithm in CPU scheduling .. this function will calculate the start , end, turn,and wait time for each proccess according … -
Replied To a Post in problem with CPU scheduling algorithm
Wow, one of my old favorite topics. This reminds of the queuing theory class days. But before I comment I think this is pretty well discussed: https://www.google.com/search?q=simulate+the+Shortest+Job+First+algorithm+in+CPU+scheduling&ie=utf-8&oe=utf-8 Videos and more … -
Began Watching Distinguish parameters and arguments in c++
I am new to c++ and puzzle about parameters and argument definitions,Please help me i will great thankful to Dani web members. -
Replied To a Post in Distinguish parameters and arguments in c++
Did you read prior discussions on that topic? http://www.cplusplus.com/forum/beginner/4488/ for example. And more at https://www.google.com/search?q=c%2B%2B+and+puzzle+about+parameters+and+argument+definitions&ie=utf-8&oe=utf-8 One of the best lessons you can learn is to research like this. -
Replied To a Post in How can I use linked list for files in java
Some folk don't want to stay on topic. This is technical enough as it is but if you change topics, it becomes a royal mess. You may disagree but from … -
Replied To a Post in How can I use linked list for files in java
How is reading lines in an array on topic? I see you've made a lot of posts all about metrics and writing your own code but how did you get … -
Began Watching How can I use linked list for files in java
Hi all, How can I use linked list for files ,, For example : Class C extends B Class B extends A So, if I want to reference to C … -
Replied To a Post in How can I use linked list for files in java
I could not find the measurement you want to measure. Try using a standard like we read from http://www.virtualmachinery.com/jhawkmetricsclass.htm Or supply a link to the metric you want to measure, … -
Replied To a Post in test scores #2
As to system pause, that's a subject of many prior discussions. Example: http://stackoverflow.com/questions/1107705/systempause-why-is-it-wrong The prof may be running folk through the mill, stamping out future programmers. The better ones learn … -
Replied To a Post in test scores #2
So did you single step your code in your dev system? system("pause"); may not be such a good idea for portability. -
Began Watching Update script for Images and HTML
I am making a website that will images on there, but the webpage will refresh every 15seconds but I want new images to appear on the site, is there anyway … -
Replied To a Post in Update script for Images and HTML
Yes. But given this much detail about your site, how to do this is wide open. There are now so many scripts to swap images today that you suffer from … -
Began Watching IP Camera
I have a TRENDnet IP camera and I am wondering if there is a way to isloate the feed and stream it on my website? Thanks in advance -
Replied To a Post in IP Camera
Back to Trend and ask if they have a plugin for your website. You left out model details, what web server you use and more. But you need to just … -
Began Watching BOOST VOLUME (headphones)
Is there any program for boosting my headphones i have searched on internet but all i get is the same steps (right click on volume>Playback Devices > Properties>Enhacements> Enable Sound … -
Replied To a Post in BOOST VOLUME (headphones)
Something else to try. Beware it will take some CPU load but google up fxsound.com. I don't need to but if you can't get an amp, and need just a … -
Began Watching How to pass a Structure with pointers through Named Pipes
Hello guys, I have this structure with another double pointer structure inside that I need to pass through named pipes with the function WriteFile from WinAPI. typedef struct Labyrinth{ Cell … -
Replied To a Post in How to pass a Structure with pointers through Named Pipes
This looks incorrect from the beginning. Pointers point to memory which is memory in your app and machine. Passing pointers to another PC would be almost meaningless 99% of the … -
Began Watching Give me advise about outlook 2003
Is there a good utility to fix .pst files? -
Replied To a Post in Give me advise about outlook 2003
No. All the posts I read about this are spams and shills. Your best utility is the backup copy of the PST. This can be automated today very easily but … -
Replied To a Post in Modem gone on Dell 5000 series laptop using Windows 7
So yes, Mcafee can block your internet. https://www.google.com/#q=mcafee+blocks+internet+access This has lead me to avoid most AV makes today. I've fallen back to Windows Defender and my own good behavior. No … -
Replied To a Post in test scores #2
I see tutorials with https://www.google.com/search?q=utorials+based+on+parrallell+arrays&ie=utf-8&oe=utf-8#q=tutorials+based+on+parallel+arrays+c%2B%2B Anyhow your post is too close to "Will you fix my code?" Avoid that and tell what line of code is causing trouble for you. -
Replied To a Post in Modem gone on Dell 5000 series laptop using Windows 7
Sorry but I didn't want you to give up that easy. I hope you can tell more. For example, if you told us you had Norton or Kaspersky we know … -
Began Watching test scores #2
Test Scores #2 Modify the program of Programming Challenge 2 to allow the user to enter name-score pairs using two parralell arrays. For each student taking a test, the user … -
Replied To a Post in test scores #2
This doesn't look like your code. It looks to be from 7 years ago at https://www.daniweb.com/programming/software-development/threads/186020/help-using-dynamic-memory-allocation-and-pointers Rather than passing this off as your work, why not share that up front? … -
Began Watching Modem gone on Dell 5000 series laptop using Windows 7
Three days ago, my laptop stopped connecting to the internet. Error says no modem found. When I go to Device Manager, modem is not listed. Can't update anything because cannot … -
Replied To a Post in Modem gone on Dell 5000 series laptop using Windows 7
You'll have to tell more to continue. "Modems" in laptops have been dial up modems and nothing to do with broadband connections. In fact, so few folk have a modem … -
Began Watching test scores
so the program needs to dynamically allocate an array large enough to hold a user=defined number of test scores. once all scores are entered, the array should be passed to … -
Replied To a Post in test scores
I have a question. Why does this look exactly like that post from 7 years ago at https://www.daniweb.com/programming/software-development/threads/186020/help-using-dynamic-memory-allocation-and-pointers Are you telling me you are still working this code after this … -
Began Watching Database connection in vb.net
I am trying to connect my database to my application. this is very basic at the minute but here is my app: [Click Here](http://prntscr.com/b4wciu) I have created a database which … -
Replied To a Post in Database connection in vb.net
I didn't see an app there. Just some screen shot. OK, off to google for research for code and maybe a youtube. https://www.google.com/search?q=cpanel%2Fmysql+workbench+to+visual+studio&ie=utf-8&oe=utf-8 Yup, there's priors and even a YouTube …
The End.