Jump to content

[LE] mon cellview ne s'affiche plus


ninilove

Recommended Posts

bonjour je me permet de vous demander de l'aide depuis aujourd'hui mon cellview ne s'affiche plus.

J'ai eu beau reinstaller creation kit et chercher comment l'ouvrir rien n'y fait.

Pouvez vous m'aider.

Merci d'avance.

en pièce jointe une capture d'écran de mon kit de création.

Edited by ninilove
Link to comment
Share on other sites

bonjour... je suis Tobi lol !...

 

French user :o

C'est Interessant

 

https://www.youtube.com/watch?v=4IdObC-agcs&t=17s

 

If You have problem with Cell Window You can just delete

SkyrimEditor.ini

SkyrimEditorPref.ini

 

it should help u :D

 

 

 

Or You can do this:

	#include <windows.h>
	
int main()
{
	HWND Window = FindWindowA( "Cell View", NULL );
	If( Window == NULL )Beep(500,500);
	
	MoveWindow( Window, 50,50, 500,500, true );
}

You can Compile it with any C++ Compiler :D

 

xDDDDDDDDDDDD

Ye im working on 1360 x 768 Screen so sometimes i use such things :D

 

for example WaterType window is too big for me :smile:

 

 

 

Good Luck and

Adieu :smile:

 

//Edit:

and thats real code xD

Moving windows is that simpe ;D

 

MoveWindow Function Microsoft:

https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-movewindow

 

FindWindow Function Microsoft:

https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-findwindowa

 

 

Just change Window name You look for :D

 

MoveWindow arguments are as following:

- Window

- X Position

- Y Position

- X Size

- Y Size

- true / false

 

last is not important, its callback message, window procedure for windows windows <-- ye... good name windows

every window have its own procedure, if last argument is true then function will send message to procedure to repaint window

 

idk why im even explaining it :D

Edited by TobiaszPL
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...