Questions tagged [generated]

Do not use. This tag has been used for generated code, generated keys, generated-anything. Too broad.

212 questions
1
vote
0 answers

Automated categorizing drop down menus

If I am able to select an option from a drop down menu, then is it possible for that element which I selected will open up another drop down menu automatically with the the list of items that are under that particular category. The database is in…
Jose Sanchez
  • 7
  • 1
  • 6
1
vote
3 answers

ASP.NET C# can't retrieve info from programmatically added control in GridView tablecell

Im working on a small project and im programmatically switching text in a gridview with a control. Here are the steps for the code: private GridViewRow EnterEditMode(GridView GV, int RowIndex) { GridViewRow GVR = GV.Rows[RowIndex]; …
Jeroen Vorsselman
  • 803
  • 1
  • 9
  • 19
1
vote
0 answers

String name in strings.xml caused error in R.java that cannot be edited manually in eclipse

I have been working on an app for some time in eclipse. I am using ADT, Build: v22.0.1-685705. The other day, I accidentally named a string with a space in the name. I eventually fixed the name, but in the R.java file, it still has a space in it.…
1
vote
1 answer

Tapestry how to serve a dynamically generated XML file?

I am having problems related to Tapestry on my final year project (Maven + Hibernate + Spring + Tapestry). I hope somebody could help on it. I generate an XML file (its content is my MySql DB data in a custom format I created) on my service layer (I…
Alberto
  • 139
  • 1
  • 3
  • 14
1
vote
1 answer

Permanently ignore winforms designer errors

I have a C# project in which the generated designer code throws an error at design time. Fixing the error requires me to modify the generated code, which gets overwritten every time I build. The error is the generic full screen "To prevent possible…
cplusruss
  • 73
  • 1
  • 5
1
vote
3 answers

Hibernate: inserting an entity with custom id in the case: strategy = GenerationType.AUTO

Hib just ignoring an id setting if that strategy take a place. Are there any ways to avoid that and save the strategy? @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name = "id") public Long getId() { return id; } ... Account…
arctica
  • 336
  • 4
  • 14
0
votes
1 answer

PHP: Using randomly generated and integrating a retweet/share button

I am trying to create a randomly generated phrase that can easily be shared amongst social media websites, specifically twitter. I am using the following PHP code to generate a random phrase. This code looks in 'responses.txt' for a line with a…
Rogan
  • 3
  • 1
0
votes
1 answer

QMAKE : Generated VS Project and Ampersand

I use QMAKE to generate a Visual Studio Project which contain a path with whitespaces, ex : C:\Program Files... I need to add the " tag (the 6 characters html tag and not the real quote, that's what VS need) before and after the path ($$quote…
Oxyd
  • 21
  • 1
  • 3
0
votes
2 answers

Creating weekly and month graphs using SQL and php for site usage

So i'm building an statistics section for a website i'm building for work (managers request). i have a functioning code for a '24 hour' graph. The graph code i have works perfectly but i'm having troubles getting the right code for mysql to pull out…
Cyclobs
  • 25
  • 1
  • 5
0
votes
0 answers

how to debug a java abstractProcess using vscode

I created an abstractProcess to generate a code when a Pojoproperty is annotated with my custom annotation and I save it. I have two projects: a project called MyAbstractProcessProject that has an annotation and my abstractProcess to process this…
0
votes
1 answer

How can I make my procedurally generated texture follow a curve in Blender?

I want to texture a blade in Blender. For this, I use a generated texture that creates this brushed look. Now I want to change the direction of the brushed metal to follow the direction of the curve (picture from yellow to red). Is this possible? I…
Peter
  • 11
  • 2
0
votes
0 answers

Karate framework -Report not generated

net.masterthought.cucumber.ReportBuilder generateErrorPage INFO: Unexpected error net.masterthought.cucumber.ValidationException: None report file was added! at net.masterthought.cucumber.ReportParser.parseJsonFiles(ReportParser.java:61) at…
0
votes
0 answers

CATIA VBA: Extract name of generated point in CATDrawing

I'm tearing my hair out trying to work with generatedpoints in draft view. I have a 3D model with points that are named in a particular way, per the picture below: point names Then on the CATDrawing, I have generated views that show those points. if…
cheeseman30
  • 3
  • 1
  • 3
0
votes
1 answer

Error while writing ...File name too long

I'm trying to unmarshall my xsd file and generate the classes using mvn clean install. I'm facing the below error : [ERROR]…
0
votes
1 answer

Is there a way to create a generated column in postgresql that will store a boolean value from comparing 2 dates?

I am trying to create a new generated column call memberstat which is a boolean that will hold just a 'True' or 'false' if the current date is greater than expiration date. So far, whenever i create 'memberstat boolean generated always as (case when…