5,430 Posted Topics

Member Avatar for GhostDragon
Member Avatar for bobgodwin
0
539
Member Avatar for Nikita_14
Member Avatar for rproffitt
0
102
Member Avatar for Jorge_22

What our techs usually find is the range extender has failed. Remember I take it you know how to factory reset and deploy your hardware. Another thing, we do not support extenders. We refit the network with better solutions such as powerline kits with WiFi.

Member Avatar for rproffitt
0
23
Member Avatar for paydata

Sounds correct as I recall the Integer limits (32767 to -32768) apply to the seek command. You have to ask if QB64 extended those limits or break your data up into more files.

Member Avatar for rproffitt
0
180
Member Avatar for Andre_5

Your screenshots don't match what I see at https://docs.microsoft.com/en-us/visualstudio/data-tools/add-new-data-sources?view=vs-2019 I wonder if you have some old VB.NET or you didn't complete the steps at the link noted.

Member Avatar for rproffitt
0
38
Member Avatar for beltonengratis

For me, this has been all too easy. Did not add any apps. I set the ringtone I want on the iPhone. Why clutter my PC and phone with your app?

Member Avatar for rproffitt
-1
32
Member Avatar for woodslab90

If only pasting code would result in a VB6 app to work. I'd give yourself time to see if there are any VB6 tutorials on the web but let's write one reason pasting code is likely to do nothing at all. In VB6 you have forms and objects that you …

Member Avatar for RobDownUnder
0
177
Member Avatar for phphp

Remember what you mix something very old and new you end up having to test to see if it works. https://github.com/microsoft/mssql-jdbc/releases has me write to try 9.1.1 since Java 15 support was only added in 9.1.0.

Member Avatar for JamesCherrill
0
125
Member Avatar for Dani

No big plans. We are keeping our bubble intact but I will pick up a turkey and more to make a Christmas dinner.

Member Avatar for Reverend Jim
1
39
Member Avatar for Xozz

Tell us what you mean by setup. I see UwAMP already packed in MySQL. > WampServer refers to a solution stack for the Microsoft Windows operating system, created by Romain Bourdon and consisting of the Apache web server, OpenSSL for SSL support, **MySQL** database and PHP programming language. Wikipedia

Member Avatar for john_111
0
533
Member Avatar for Nikita_13

There is no close button noted at https://www.tutorialspoint.com/wxpython/wx_dialog_class.htm Either that or you meant only that top right X? I can't tell from your post. Given only what you wrote so far I am guessing you want no buttons at all. Try: wx.MessageBox('Nothing to see here.', ' ',0)

Member Avatar for rproffitt
0
27
Member Avatar for Super_5

> Tambola is another name for the game of Bingo, Housey, or Housie. - Wikipedia Also, how would getting us to supply you code help with your exam? You would be saddled with someone else's code and unable to stand up to a code reveiw since it wasn't your work. …

Member Avatar for rproffitt
0
25
Member Avatar for Vincenzo_1

Sure. Here's one at https://gist.github.com/AhmedEid1995/5b983a984ee9c61dc95f Not sure how that could be used for an exam but hey, code!

Member Avatar for rproffitt
0
45
Member Avatar for andre.jonker

The resources are compiled into the app if we are talking about the usual Visual Studio C# system.

Member Avatar for rproffitt
0
360
Member Avatar for Jen Larosa

So many nice ones out there. Can you clarify what you play now and what you are looking for?

Member Avatar for GibsonHarry
0
43
Member Avatar for Diogo_3

As you've heard before: Show your work. Explain what the issue is. Also, I have doubt about the "pure" part. Did you posit this would not use any libraries or graphics? PS. Also, it's been done before. I looked at https://github.com/fjsj/programming-challenges/blob/master/Minesweeper.c

Member Avatar for rproffitt
0
33
Member Avatar for santinomabait
Member Avatar for rproffitt
0
59
Member Avatar for Kuldeepbsht3103

Think about how you do this now. Then automate that in your backend. Remember that ideas about this are within easy reach i.e. research so I won't duplicate that here but note the usual how I tackled such in the past.

Member Avatar for Dani
0
101
Member Avatar for darkbox

This area is well done. But there is no fitting answer because we don't know what email services your web host provides. Reveal a bit more about the web site hosting so I can check them out.

Member Avatar for darkbox
0
108
Member Avatar for Poppic

Just for fun I put something similar in to the online compiler at https://godbolt.org I set the code type to C and the output to MIPS. Example follows: // Note that If is now if. int f (int a, int b, int c, int d) { if ((a + b) …

Member Avatar for rproffitt
0
6K
Member Avatar for Jin_3

The last MIPS project we had at the office used a C compiler so there would be little to no changes. Maybe you wanted something else but didn't ask. Also, the MIPS C compiler would create an assembler file if need be.

Member Avatar for rproffitt
0
55
Member Avatar for pauldore

So why not https://www.tiny.cloud/docs/integrations/wordpress/ then show your clients your work and see what they think? It doesn't matter what I think as I'm going to say "Oh great, another editor."

Member Avatar for Dani
0
129
Member Avatar for lewashby

Hello again! OK, for that APU we always make sure the RAM is dual channel as the graphics and more take a double digit loss when it's single channel. As to over speed, we eject all the old HDDs and slip in the new light-speed-engines called Solid State Drives (SSD.) …

Member Avatar for rproffitt
0
77
Member Avatar for 613.sari.m.art

Here we are primarily an English forum Google Translate offers me this: > The software writes me an error on the word strndup Maybe someone knows if this varies in versions of Visual Studio and how can this be arranged? If I'm reading https://en.cppreference.com/w/c/experimental/dynamic/strndup correctly you are missing a few …

Member Avatar for Dani
0
78
Member Avatar for masonjones26

You omitted make, model and year made. Even so, it appears it's not one and done. That is, you may not find a ready to use distro where you install and use it. Examples abound at https://www.google.com/search?&q=Z3735F+linux+touchscreen+support

Member Avatar for rproffitt
0
27
Member Avatar for Aleksandra_3

Why not use the Max() function at https://www.freepascal.org/docs-html/current/rtl/math/max.html Also why use else statements? Here's a straight line brute force solution. Try: (psuedo code follows) max := a if (b>max) then max:=b If (c>max) then max:=c writeln('the highest is ', max);

Member Avatar for rproffitt
0
41
Member Avatar for Xozz
Member Avatar for rproffitt
0
62
Member Avatar for Adolfo_1

Rather than PHP you could entertain pushing the data around on the other side. Here's a tutorial: https://www.tutorialrepublic.com/javascript-tutorial/javascript-cookies.php

Member Avatar for Adolfo_1
0
211
Member Avatar for Violet_82

Here's a short bit from the web about Powershell oddities in this regard: - backtick to escape instead of \ - regex must be in "double quotes" - must either use single quotes or escapes to have capture groups work in the replacement string There may be more but my …

Member Avatar for xrjf
0
916
Member Avatar for Rudrakshi Rajalaxmi

I don't see how to condense all you would need to know in this space. Looking at https://pythoninchemistry.org it appears you spend quite a few months working at this.

Member Avatar for rproffitt
0
26
Member Avatar for lena_

New or not, when you approach a problem that seems too big, make it smaller. Don't worry about reading 50 files right now. Start with 1 and then grow the solution as you learn. And again, break down the problem to manageable steps. Don't try to read 10 lines, just …

Member Avatar for rproffitt
0
54
Member Avatar for MD Nawab

I've been told it's important that students must become self-motivating and take charge of their learning.

Member Avatar for Dani
0
108
Member Avatar for cuion

This may vary with some hosting plans but as I read https://answers.uillinois.edu/illinois/page.php?id=91468 it looks complete enough for most webmasters.

Member Avatar for rproffitt
0
42
Member Avatar for VIJAYA_5

There are so many today. Many are free. Even I can get the community version of Visual Studio for free and on Linux, so many, and it's been a year but Apple issues a free development kit with ... code editor. I would have to guess why you asked. Tell …

Member Avatar for P4Programs
1
71
Member Avatar for Gokul_5

I'd start with tutorials. Almost every tutorial at some point ends up with you having to write an application.

Member Avatar for rproffitt
0
44
Member Avatar for Mikus_1

It appears this is very very similar to the discussion at https://www.daniweb.com/programming/software-development/threads/254864/removing-a-symbol-from-a-string However as I research a bit with https://www.google.com/search?&q=delete+character+from+string+pascal we find that you must also tell which Pascal system you are using since one might use delete or maybe delchars.

Member Avatar for rproffitt
0
48
Member Avatar for syamim_1
Member Avatar for rproffitt

Here's the screenshot: ![image_2020-11-28_073835.png](https://static.daniweb.com/attachments/1/eb2cf86d488ff5b8c81a24572d7baa80.png) Notice the browser tab showing a tag. Here's one that does not work like that: https://www.daniweb.com/programming/software-development/threads/378481/need-algorithm-to-c-code-conversion-assistance The link is https://www.daniweb.com/hardware-and-software/microsoft-windows/threads/533760/please-i-want-to-change-c-to-c I don't see a tag being called out in all tabs so there's something of a randomness there. Not a big deal and you have much …

Member Avatar for Dani
0
93
Member Avatar for kanugula

From https://www.daniweb.com/welcome/rules "Do provide evidence of having done some work yourself if posting questions from school or work assignments" Unless this is you asking for quotes on how much, then state that so folk know you are hiring out.

Member Avatar for kasraneni2003
0
332
Member Avatar for Xoxo_2

One would have to make assumptions on this assignment such as are the digits in some integer and we assume base 10. Assumptions mean solutions could be incorrect. Show your work and don't leave out details such as the digits are in some integer and what base number system is …

Member Avatar for rproffitt
0
82
Member Avatar for kanugula

From https://www.daniweb.com/welcome/rules "Do provide evidence of having done some work yourself if posting questions from school or work assignments" Unless this is you asking for quotes on how much, then state that so folk know you are hiring out.

Member Avatar for rproffitt
0
81
Member Avatar for Debasis_1

I'm guessing that you haven't been at this long enough. Anyhow if I disregard what you asked about docking I'd explore https://docs.microsoft.com/en-us/windows/win32/shell/taskbar#adding-and-deleting-taskbar-icons-in-the-notification-area and see if I could work with that.

Member Avatar for rproffitt
0
56
Member Avatar for faarrukhjamal

That's a poor explanation of what may be someone's homework. One could fulfill this by printing the arrow then the random value. Besides that, where's your code and where are you stuck? I rarely see anyone write your code for you. Maybe some psuedocode but no more unless it's to …

Member Avatar for Smartfitness33
0
1K
Member Avatar for jeffmylife

This is great. As to practical use this saved hundreds of lives in 1864 when a pump handle was removed. Today it is used to visualize answers to questions such as "nearest location for most customers" and more. As it's one in your arsenal of graphical data presentation it's nice …

Member Avatar for Smartfitness33
5
24K
Member Avatar for Dylan_17

So many reasons. At the shop we'll try this card in another PC and a shop card in your PC to see if that tells us where the issue is. You omitted your PC details so I can't guess if we can test the PC without the card and run …

Member Avatar for rproffitt
0
22
Member Avatar for VIPER5646

This is from old memory. Had to load up the old app and recompile with current SP.

Member Avatar for VIPER5646
0
208
Member Avatar for Tafadzwa_2

Odd use of tags there as I might think you want this code in five languages. But this does sound like homework or an assignment. I'm sure you can create the code for the menu so what steps stopped you from moving forward?

Member Avatar for rproffitt
0
81
Member Avatar for shankaria

I recall those had graphic chip failures. As in either the chip or the solder work. It's not a setting, it's hardware. Be sure to try a new CMOS/RTC battery then perform the usual reset as follows then re-test. Remove the power, remove the battery, press and hold the power …

Member Avatar for rproffitt
0
39
Member Avatar for shankaria

The first test is if the USB external keyboard works. If it does that usually means (about 99%) of the time) the laptop keyboard needs to be replaced. Just in case you don't know, on the login screen you can turn on the OSK (On Screen Keyboard) to log in …

Member Avatar for rproffitt
0
33
Member Avatar for jessica_37

Please supply full laptop details such as model year, age, complete model number and if there are known issues such as bad battery and drives. Also, if it's past a year old tell me about how you keep the vents and heatsinks clean.

Member Avatar for rproffitt
0
81

The End.