Posts

delphi - .rep Report File - Find Report Builder -

i have old software believe done in delphi , uses .rep files reports. there way figure out report builder used? opening file in hex or text doesn't tell lot, shows quite text used within report though. thanks patrick candidates: a visual dbase file, case should ascii text, question seems rule out. a (sap) business objects report file an act! (crm software) report file a grand theft auto san andreas game replay file. since 'used report', bo best bet. acquired sap in 2007, before standalone software produced business objects ag. so need copy of open file. maybe there other ways inspect/use file, other people have faced same problem

android - Use color ints, as opposed to color resource ints, for SwipeRefreshLayout? -

i have colors dynamically generated in app, based off of user preferences. used these colors in chrisbane's actionbar-pulltorefresh library, since library no longer being developed, i'm trying move on swiperefreshlayout. however, swiperefreshlayout seems take color resource ids, opposed ints directly represent colors, , such can't find way color progress bar. there i'm missing in swiperefreshlayout allow me need do? not sure v19 support library, v20 1 has following methods: public void setcolorschemeresources(int colorres1, int colorres2, int colorres3, int colorres4) which allows set colors resource. following method exists, takes colors: public void setcolorschemecolors(int color1, int color2, int color3, int color4) the second 1 answer

Prevent System Generated Toast in Android -

i have added onprimaryclipchangedlistener() in service, detects when user copies text, , displays output toast. however in apps (e.g. gmail) when user copies test, toast message "text copied clipboard" displayed overrides toast displayed message. how can suppress other toast message? thanks you, developer, have no means of affecting toasts displayed app.

javaFX helloworld jar cannot be ran on different platform -

i new javafx stuff , not sure if knows did wrong. here scenario: on win 7, used netbeans 8 jdk1.8.0_05 created helloworld.jar on win 7, java -jar helloworld.jar works fine move helloworld.jar redhat 5.8 , used same version jdk1.8.0_05, java -jar helloworld.jar . , see following error graphics device initialization failed : es2, sw error initializing quantumrenderer: no suitable pipeline found red hat enterprise linux 5.8 not supported configuration javafx in java 8 . red hat enterprise linux 6.x (and other linux variants) supported. midorikid provides procedure allow javafx used on red hat el 5.x system in answer to: running javafx jars on redhat 5.8 . note although procedure can followed, recommended uses more recent rhel system run javafx in supported configuration.

c# - Azure Storage Client v4.1 - a value of the non-primitive type was expected -

i've upgraded asp.net project (mvc5) target azure sdk 2.3 storage library 4.1 , encountering strange error when try save table storage. error: an unhandled exception of type 'microsoft.windowsazure.storage.storageexception' occurred in microsoft.windowsazure.storage.dll additional information: primitive value specified; however, value of non-primitive type '' expected. my models go table storage via repositories use tableservicecontext add, update, delete, save. i follow pattern models: [system.data.services.common.dataservicekey(new string[] { "partitionkey", "rowkey" })] public class persistedalert : alert, itableentity { public string partitionkey { { return this.studentid; } set { this.studentid = value; } } public string rowkey { { return this.id; } set { this.id = value; } } public datetime timestamp { get; set; } public new int type { get; set; } //...

swing - java radio button, updating a JLabel -

i trying make code adds or subtracts initial value presented each time click submit. have searched multiple threads on how complete , haven't come across clear. push in right direction help. package twopaneldesign; import javax.swing.jframe; import java.awt.color; import java.awt.font; import java.awt.event.actionevent; import java.awt.event.actionlistener; import javax.swing.buttongroup; import javax.swing.jpanel; import javax.swing.jradiobutton; import javax.swing.jlabel; import javax.swing.swingconstants; import javax.swing.jbutton; public class twopaneldesign extends jframe { private static final long serialversionuid = 1l; public twopaneldesign() { getcontentpane().setlayout(null); jpanel panel = new jpanel(); panel.setbounds(0, 0, 151, 262); getcontentpane().add(panel); panel.setlayout(null); final jlabel lblyourchoice = new jlabel("your choice..."); lblyourchoice.setbounds(10, 11, 172, 1...

arduino - Serial communications and good software for android dev -

so teaching programming class , ran little problem. going teach serial communication between raspberry pi , arduino python, rpi died suddenly. oh well... came idea of teaching serial com btw arduino , android usb otg adapter. brilliant idea catch is, ive never programmed android extensively. know basics, need know how pass simple ascii characters through serial com. ive looked on web, none of existing tutorials ive seen accomplish this. sorry needy long post appreciate can on subject. (on side note know android ide beginners?) here site has source android usb various devices: usb-serial-for-android . from description: this driver library communication arduinos , other usb serial hardware on android, using android usb host api available on android 3.1+.