Jump to content

pm94

Member
  • Posts

    153
  • Joined

  • Last visited

Awards

1 Follower

About pm94

  • Birthday May 21, 1994

Profile Information

  • Gender
    Male
  • Location
    Setúbal, Portugal
  • Member title
    Junior Member

System

  • CPU
    AMD R5 1600
  • Motherboard
    ROG STRIX B350-F GAMING
  • RAM
    8GB Ddr 4 2400Mhz
  • GPU
    Asus Rx 480 Dual 4Gb
  • Case
    Cooler Master Haf 932
  • Storage
    Seagate Barracuda 1TB
  • PSU
    Corsair Hx750i
  • Display(s)
    hp w19ev
  • Cooling
    corsair h110
  • Keyboard
    Logitech access keyboard
  • Mouse
    1life Shied
  • Operating System
    Windows 10 Pro

Recent Profile Visitors

917 profile views
  1. The problem was found somehow a drop of water condensed near the pci-e 16x and shorted a mosfet, thanks for all the help.
  2. did them all to no avail, had to drop it today in the shop all the parts were in the warranty so let's pray.....
  3. yes sorry i forgot cpu: ryzen r5 1600 (oc to match 1600x) ram: 2x Crucial Ballistix Sport LT DDR4 2400 PC4-19200 4GB CL16 (oc to 2733) mobo: asus b350-f strix gpu: asus rx480 dual 4gb psu: corsair hx750i
  4. Hey guys, my pc is not posting, i left a game open when i was away and when i returned the pc was frozen i pressed the reset button and nothing happened then went for the power button left it pressed for a while and again nothing happened had to turn the psu off after that i turned on the pc and it posted, the bios appears asking if i wanted to enter in the bios safe mode cuz i had detected a forced shutdown and then the image disappears the pc went unresponsive again so i turned the psu off and back on and the pc started immediately without me pressing the power button and no post, i removed the gpu nothing then the ram and it did a post error, i reinstalled the gpu without ram still a post error then i reinstall the ram and again nothing happens no beeps nothing, i removed the ram again and tried to turn on the pc again this time no post error, cleared the bios and it post error again im at a lost what could be. sorry if it's to convoluted :edit: just noticed the keyboard lights (num lock, etc) are blinking intermitently. :edit: if i leave it off for a while the pc starts giving post error with and without the ram after it heats up it stops again
  5. Hey guys I updated pokemon go today to the latest version and now I'm getting stuck on this screen, my phone uses a custom rom AICP and I have magisk manager although I'm hiding it from pokemon.
  6. pm94

    Excel macro

    Hey guys I need some help im trying to create an excel macro to streamline some work that I do but I'm facing an issue the macro creates a new file and within that file it creates 2 sheets I must then pull some information from those sheets (they are already populated from date from an origin file) but the file I create with the sheets the name is never the same because it copies the origin data file can anyone help me with a way to pull that data from the sheet PS. Sorry to upload the code with a photo but this pc I'm using is not connect to the internet
  7. Yeah I understand but it will lower the price when the Vega GPUs come out
  8. Probably as was said above it has to do with supply and demand those GPUs probably sell more where you live so the price goes up
  9. Wierd maybe there is a higher import tax around there, are the Nvidia GPUs also overpriced?
  10. Around me the Rx 480 costs 250€ maybe the store was overpriced?
  11. Hey guys I'm trying to give a standard user on my computer access to a program, the problem is the program requires to be start as an administrator I can't give the user the administrator password for the UAC prompt, what I really needed is a way for Windows to automatically start the program without prompting the Uac and asking the password. The windows version I'm using is windows 10 home.
  12. hahaha i learned C in school like 3years ago so most of it i have forgotten if im not mistaken scanf as i used it should work but i will search online thanks very much for your help
  13. well it worked but when i tried i gave it a maximum of 1 it started spitting out a bunch of numbers didn't even ask the second parameter btw i wrote the code wrong last time fixed it now #include <stdio.h> int main() { int maximum; int y; int x = 0; int z; printf("numero de semanas\n"); scanf("%d", &maximum); printf("saldo\n"); scanf("%d",&x); y = 1; while(y < maximum){ z=x+y; x=z; y++; printf("%d\n",z); } return 0; }
  14. still getting the same error
  15. i'm getting this error error: lvalue required as left operand of assignment x+y=z; here is the code so far #include <stdio.h> int main() { int maximum; int y; int x; int z; printf("numero de semanas\n"); scanf("%d", &x); printf("saldo\n"); scanf("%d",&maximum); y = 1; while(y < maximum){ x+y=z; x=z; y++; printf("%d\n",z); } return 0; }
×