designer

SSMS crashes when try to modify database diagram (v18.2)

泪湿孤枕 提交于 2020-08-24 05:44:38
问题 When I try to modify a database diagram created before the application restart and crashes when trying to access. It happen only when I save the diagram and close the application. When I try to reopen it throws me an error then restart the SSMS. I'm running SQL Server 14.0.100 Express Edition. I reviewed the Microsoft Event Viewer and I get this: Faulting application name: Ssms.exe, version: 2019.150.18142.0, time stamp: 0x5d3573be Faulting module name: DataDesigners.dll, version: 2019.150

Im trying to make a app that launches two .exe files but I also want to make it work on any computer and preferably just one big .exe file

╄→гoц情女王★ 提交于 2020-07-16 07:46:23
问题 Im new to all this and all im trying to do is make a little file that looks decent, has a exit button and a launch button that when you hit it, it launches two other .exe files and closes. I also tried to make it launch but I saw that with the current path it would only work on my computer and not anyone elses. Here is my code so far: import tkinter as tk from PyQt5 import QtCore, QtGui, QtWidgets import sys import os from PyQt5.QtWidgets import * from PyQt5.QtGui import * import PyQt5.QtCore

PyQt5 opening second window from main

落花浮王杯 提交于 2020-06-16 17:07:29
问题 Hi I am new to python (up to lecture 3 and of MIT 6001 Introduction to Computer Science and Programming in Python) nevetheless I started playing with PyQt5 and Designer (Python3, PyQt5, on linux). I read, a little bit about PyQt5, but dont understand a lot about Object Oriented Programming and, Qt documentation is like Klingon too me. Can't figure out why this script test.py fails to open the second window, actually it does open it, I can see it briefly beefore desolve in front of the first

PyQt5 opening second window from main

梦想与她 提交于 2020-06-16 17:06:45
问题 Hi I am new to python (up to lecture 3 and of MIT 6001 Introduction to Computer Science and Programming in Python) nevetheless I started playing with PyQt5 and Designer (Python3, PyQt5, on linux). I read, a little bit about PyQt5, but dont understand a lot about Object Oriented Programming and, Qt documentation is like Klingon too me. Can't figure out why this script test.py fails to open the second window, actually it does open it, I can see it briefly beefore desolve in front of the first

PyQt5 opening second window from main

情到浓时终转凉″ 提交于 2020-06-16 17:05:12
问题 Hi I am new to python (up to lecture 3 and of MIT 6001 Introduction to Computer Science and Programming in Python) nevetheless I started playing with PyQt5 and Designer (Python3, PyQt5, on linux). I read, a little bit about PyQt5, but dont understand a lot about Object Oriented Programming and, Qt documentation is like Klingon too me. Can't figure out why this script test.py fails to open the second window, actually it does open it, I can see it briefly beefore desolve in front of the first

Property value of base class not saved by designer

不打扰是莪最后的温柔 提交于 2020-06-15 18:21:41
问题 I have added a form to my WinForms project in Visual Studio Express 2013 that I want to use as a base form for other forms. Say I put a button on this form and I want to have a property that makes this button visible or invisible. Imports System.ComponentModel Public Class MyForm <DesignerSerializationVisibility(DesignerSerializationVisibility.Content)> Public Property ButtonVisible As Boolean Get Return Button1.Visible End Get Set(value As Boolean) Button1.Visible = value End Set End

Property value of base class not saved by designer

主宰稳场 提交于 2020-06-15 18:21:03
问题 I have added a form to my WinForms project in Visual Studio Express 2013 that I want to use as a base form for other forms. Say I put a button on this form and I want to have a property that makes this button visible or invisible. Imports System.ComponentModel Public Class MyForm <DesignerSerializationVisibility(DesignerSerializationVisibility.Content)> Public Property ButtonVisible As Boolean Get Return Button1.Visible End Get Set(value As Boolean) Button1.Visible = value End Set End